diff --git a/Cargo.toml b/Cargo.toml index 2f9507f..8afe5f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,5 +39,6 @@ rand = "0.7.2" router = "0.6.0" serde = { version = "1.0.103", features = ["derive"] } serde_json = "1.0.42" +stringreader = "0.1.1" tantivy = "0.11.3" urlencoded = "0.6.0" diff --git a/docs/getting_started.html b/docs/getting_started.html index 091d678..7184ba5 100644 --- a/docs/getting_started.html +++ b/docs/getting_started.html @@ -241,100 +241,13 @@

Getting schema< ]

Indexing document

-

You can index documents with the following command:

-
$ ./bin/bayard put 1 '{
-  "url": "https://github.com/bayard-search/bayard",
-  "name": "Bayard",
-  "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.",
-  "popularity": 1152,
-  "category": ["/category/search/server", "/language/rust"],
-  "timestamp": "2019-12-19T10:41:00+09:00"
-}' | jq .
-$ ./bin/bayard put 2 '{
-  "url": "https://lucene.apache.org/solr/",
-  "name": "Apache Solr",
-  "description": "Solr is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more.",
-  "popularity": 3135,
-  "category": ["/category/search/server", "/language/java"],
-  "timestamp": "2019-12-19T14:08:00+09:00"
-}' | jq .
-$ ./bin/bayard put 3 '{
-  "url": "https://www.elastic.co/products/elasticsearch",
-  "name": "Elasticsearch",
-  "description": "Elasticsearch is a distributed, open source search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured.",
-  "popularity": 46054,
-  "category": ["/category/search/server", "/language/java"],
-  "timestamp": "2019-12-19T08:19:00+09:00"
-}' | jq .
-$ ./bin/bayard put 4 '{
-  "url": "https://github.com/mosuka/blast",
-  "name": "Blast",
-  "description": "Blast is a full text search and indexing server, written in Go, built on top of Bleve.",
-  "popularity": 654,
-  "category": ["/category/search/server", "/language/go"],
-  "timestamp": "2019-10-18T19:50:00+09:00"
-}' | jq .
-$ ./bin/bayard put 5 '{
-  "url": "https://github.com/go-ego/riot",
-  "name": "Riot",
-  "description": "Riot is Go Open Source, Distributed, Simple and efficient full text search engine.",
-  "popularity": 4948,
-  "category": ["/category/search/server", "/language/go"],
-  "timestamp": "2019-12-16T07:12:00+09:00"
-}' | jq .
-$ ./bin/bayard put 6 '{
-  "url": "https://github.com/toshi-search/Toshi",
-  "name": "Toshi",
-  "description": "Toshi is meant to be a full-text search engine similar to Elasticsearch. Toshi strives to be to Elasticsearch what Tantivy is to Lucene.",
-  "popularity": 2448,
-  "category": ["/category/search/server", "/language/rust"],
-  "timestamp": "2019-12-02T04:00:00+09:00"
-}' | jq .
-$ ./bin/bayard put 7 '{
-  "url": "https://github.com/valeriansaliou/sonic",
-  "name": "Sonic",
-  "description": "Sonic is a fast, lightweight and schema-less search backend.",
-  "popularity": 7895,
-  "category": ["/category/search/server", "/language/rust"],
-  "timestamp": "2019-12-10T23:13:00+09:00"
-}' | jq .
-$ ./bin/bayard put 8 '{
-  "url": "https://github.com/tantivy-search/tantivy",
-  "name": "Tantivy",
-  "description": "Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.",
-  "popularity": 3142,
-  "category": ["/category/search/library", "/language/rust"],
-  "timestamp": "2019-12-19T10:07:00+09:00"
-}' | jq .
-$ ./bin/bayard put 9 '{
-  "url": "https://lucene.apache.org/",
-  "name": "Lucene",
-  "description": "Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java.",
-  "popularity": 3135,
-  "category": ["/category/search/library", "/language/java"],
-  "timestamp": "2019-12-19T14:08:00+09:00"
-}' | jq .
-$ ./bin/bayard put 10 '{
-  "url": "https://blevesearch.com/",
-  "name": "Bleve",
-  "description": "Bleve is a modern text indexing library for go.",
-  "popularity": 6211,
-  "category": ["/category/search/library", "/language/go"],
-  "timestamp": "2019-10-30T16:13:00+09:00"
-}' | jq .
-$ ./bin/bayard put 11 '{
-  "url": "https://bitbucket.org/mchaput/whoosh/wiki/Home",
-  "name": "Whoosh",
-  "description": "Whoosh is a fast, pure Python search engine library.",
-  "popularity": 0,
-  "category": ["/category/search/library", "/language/python"],
-  "timestamp": "2019-10-08T05:30:26+09:00"
-}' | jq .
+

You can index document with the following command:

+
$ ./bin/bayard put --id=1 --file=./examples/doc_1.json | jq .
 $ ./bin/bayard commit | jq .
 

Getting document

You can get document with the following command:

-
$ ./bin/bayard get 1 | jq .
+
$ ./bin/bayard get --id=1 | jq .
 

You'll see the result in JSON format. The result of the above command is:

{
@@ -359,6 +272,11 @@ 

Getting doc ] }

+

Indexing documents in bulk

+

You can index documents in bulk with the following command:

+
$ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl | jq .
+$ ./bin/bayard commit | jq .
+

Searching documents

You can search documents with the following command:

$ ./bin/bayard search --facet-field=category --facet-prefix=/category/search --facet-prefix=/language description:rust | jq .
@@ -427,18 +345,13 @@ 

Searc

Deleting document

You can delete document with the following command:

-
$ ./bin/bayard delete 1
-$ ./bin/bayard delete 2
-$ ./bin/bayard delete 3
-$ ./bin/bayard delete 4
-$ ./bin/bayard delete 5
-$ ./bin/bayard delete 6
-$ ./bin/bayard delete 7
-$ ./bin/bayard delete 8
-$ ./bin/bayard delete 9
-$ ./bin/bayard delete 10
-$ ./bin/bayard delete 11
-$ ./bin/bayard commit
+
$ ./bin/bayard delete --id=1 | jq .
+$ ./bin/bayard commit | jq .
+
+

Deleting documents in bulk

+

You can delete documents in bulk with the following command:

+
$ ./bin/bayard delete --bulk --file=./examples/bulk_delete.jsonl | jq .
+$ ./bin/bayard commit | jq .
 
diff --git a/docs/print.html b/docs/print.html index 1dfa407..80da721 100644 --- a/docs/print.html +++ b/docs/print.html @@ -283,100 +283,13 @@

Getting schema< ]

Indexing document

-

You can index documents with the following command:

-
$ ./bin/bayard put 1 '{
-  "url": "https://github.com/bayard-search/bayard",
-  "name": "Bayard",
-  "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.",
-  "popularity": 1152,
-  "category": ["/category/search/server", "/language/rust"],
-  "timestamp": "2019-12-19T10:41:00+09:00"
-}' | jq .
-$ ./bin/bayard put 2 '{
-  "url": "https://lucene.apache.org/solr/",
-  "name": "Apache Solr",
-  "description": "Solr is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more.",
-  "popularity": 3135,
-  "category": ["/category/search/server", "/language/java"],
-  "timestamp": "2019-12-19T14:08:00+09:00"
-}' | jq .
-$ ./bin/bayard put 3 '{
-  "url": "https://www.elastic.co/products/elasticsearch",
-  "name": "Elasticsearch",
-  "description": "Elasticsearch is a distributed, open source search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured.",
-  "popularity": 46054,
-  "category": ["/category/search/server", "/language/java"],
-  "timestamp": "2019-12-19T08:19:00+09:00"
-}' | jq .
-$ ./bin/bayard put 4 '{
-  "url": "https://github.com/mosuka/blast",
-  "name": "Blast",
-  "description": "Blast is a full text search and indexing server, written in Go, built on top of Bleve.",
-  "popularity": 654,
-  "category": ["/category/search/server", "/language/go"],
-  "timestamp": "2019-10-18T19:50:00+09:00"
-}' | jq .
-$ ./bin/bayard put 5 '{
-  "url": "https://github.com/go-ego/riot",
-  "name": "Riot",
-  "description": "Riot is Go Open Source, Distributed, Simple and efficient full text search engine.",
-  "popularity": 4948,
-  "category": ["/category/search/server", "/language/go"],
-  "timestamp": "2019-12-16T07:12:00+09:00"
-}' | jq .
-$ ./bin/bayard put 6 '{
-  "url": "https://github.com/toshi-search/Toshi",
-  "name": "Toshi",
-  "description": "Toshi is meant to be a full-text search engine similar to Elasticsearch. Toshi strives to be to Elasticsearch what Tantivy is to Lucene.",
-  "popularity": 2448,
-  "category": ["/category/search/server", "/language/rust"],
-  "timestamp": "2019-12-02T04:00:00+09:00"
-}' | jq .
-$ ./bin/bayard put 7 '{
-  "url": "https://github.com/valeriansaliou/sonic",
-  "name": "Sonic",
-  "description": "Sonic is a fast, lightweight and schema-less search backend.",
-  "popularity": 7895,
-  "category": ["/category/search/server", "/language/rust"],
-  "timestamp": "2019-12-10T23:13:00+09:00"
-}' | jq .
-$ ./bin/bayard put 8 '{
-  "url": "https://github.com/tantivy-search/tantivy",
-  "name": "Tantivy",
-  "description": "Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.",
-  "popularity": 3142,
-  "category": ["/category/search/library", "/language/rust"],
-  "timestamp": "2019-12-19T10:07:00+09:00"
-}' | jq .
-$ ./bin/bayard put 9 '{
-  "url": "https://lucene.apache.org/",
-  "name": "Lucene",
-  "description": "Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java.",
-  "popularity": 3135,
-  "category": ["/category/search/library", "/language/java"],
-  "timestamp": "2019-12-19T14:08:00+09:00"
-}' | jq .
-$ ./bin/bayard put 10 '{
-  "url": "https://blevesearch.com/",
-  "name": "Bleve",
-  "description": "Bleve is a modern text indexing library for go.",
-  "popularity": 6211,
-  "category": ["/category/search/library", "/language/go"],
-  "timestamp": "2019-10-30T16:13:00+09:00"
-}' | jq .
-$ ./bin/bayard put 11 '{
-  "url": "https://bitbucket.org/mchaput/whoosh/wiki/Home",
-  "name": "Whoosh",
-  "description": "Whoosh is a fast, pure Python search engine library.",
-  "popularity": 0,
-  "category": ["/category/search/library", "/language/python"],
-  "timestamp": "2019-10-08T05:30:26+09:00"
-}' | jq .
+

You can index document with the following command:

+
$ ./bin/bayard put --id=1 --file=./examples/doc_1.json | jq .
 $ ./bin/bayard commit | jq .
 

Getting document

You can get document with the following command:

-
$ ./bin/bayard get 1 | jq .
+
$ ./bin/bayard get --id=1 | jq .
 

You'll see the result in JSON format. The result of the above command is:

{
@@ -401,6 +314,11 @@ 

Getting doc ] }

+

Indexing documents in bulk

+

You can index documents in bulk with the following command:

+
$ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl | jq .
+$ ./bin/bayard commit | jq .
+

Searching documents

You can search documents with the following command:

$ ./bin/bayard search --facet-field=category --facet-prefix=/category/search --facet-prefix=/language description:rust | jq .
@@ -469,18 +387,13 @@ 

Searc

Deleting document

You can delete document with the following command:

-
$ ./bin/bayard delete 1
-$ ./bin/bayard delete 2
-$ ./bin/bayard delete 3
-$ ./bin/bayard delete 4
-$ ./bin/bayard delete 5
-$ ./bin/bayard delete 6
-$ ./bin/bayard delete 7
-$ ./bin/bayard delete 8
-$ ./bin/bayard delete 9
-$ ./bin/bayard delete 10
-$ ./bin/bayard delete 11
-$ ./bin/bayard commit
+
$ ./bin/bayard delete --id=1 | jq .
+$ ./bin/bayard commit | jq .
+
+

Deleting documents in bulk

+

You can delete documents in bulk with the following command:

+
$ ./bin/bayard delete --bulk --file=./examples/bulk_delete.jsonl | jq .
+$ ./bin/bayard commit | jq .
 

Designing schema

Schema

@@ -935,36 +848,23 @@

USAGE

bayard put [OPTIONS] <DOC_ID> <FIELDS>
 

FLAGS

-
-h, --help       Prints help information.
+
-b, --bulk       A flag indicating whether or not to put documents in bulk.
+-h, --help       Prints help information.
 -v, --version    Prints version information.
 

OPTIONS

-s, --servers <IP:PORT>...    Server addresses in an existing cluster separated by ",". If not specified, use
                               default servers. [default: 127.0.0.1:5000]
-
-

ARGS

-
<DOC_ID>    A unique value that identifies the document in the index. If specify an existing ID, the existing
-            document in the index is overwritten.
-<FIELDS>    Document fields expressed in JSON format.
+-i, --id <ID>                 A unique value that identifies the document in the index. If specified, the existing
+                              document ID in the document is overwritten.
+-f, --file <FILE>             File path that document(s) expressed in JSON or JSONL format.
 

EXAMPLES

-

To put a document with default options:

-
$ ./bin/bayard put 1 '{
-  "url": "https://github.com/bayard-search/bayard",
-  "name": "Bayard",
-  "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.",
-  "star": 1132,
-  "facet": ["/category/search/server", "/language/rust"]
-}'
-
-

To put a document with options:

-
$ ./bin/bayard put --servers=127.0.0.1:5001 1 '{
-  "url": "https://github.com/bayard-search/bayard",
-  "name": "Bayard",
-  "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.",
-  "star": 1132,
-  "facet": ["/category/search/server", "/language/rust"]
-}'
+

To put a document:

+
$ ./bin/bayard put --id=1 --file=./examples/doc_1.json
+
+

To put documents in bulk:

+
$ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl
 

bayard get

The bayard get CLI gets a document with the specified ID.

@@ -978,16 +878,11 @@

FLAGS

OPTIONS

-s, --servers <IP:PORT>...    Server addresses in an existing cluster separated by ",". If not specified, use
                               default servers. [default: 127.0.0.1:5000]
-
-

ARGS

-
<DOC_ID>    A unique value that identifies the document in the index.
+-i, --id <ID>                 A unique value that identifies the document in the index.
 

EXAMPLES

To get a document with default options:

-
$ ./bin/bayard get 1
-
-

To get a document with options:

-
$ ./bin/bayard get --servers=127.0.0.1:5001 1
+
$ ./bin/bayard get --id=1
 

bayard commit

The bayard commit CLI commits updates made to the index.

@@ -1070,7 +965,7 @@

OPTIONS

-F, --facet-field <FACET_FIELD> Hierarchical facet field name. [default: ] -V, --facet-prefix <FACET_PREFIX>... Hierarchical facet field value prefix.
-

ARGS

+

ARGS

<QUERY>    Query string to search the index.
 

EXAMPLES

@@ -1190,6 +1085,7 @@

Put API

Put API puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.

Request

PUT /index/docs/<DOC_ID>
+PUT /index/docs
 

Path parameters

Request body

    -
  • <FIELDS>
    -Document fields expressed in JSON format.
  • +
  • <DOCUMENT>
    +Document(s) expressed in JSON or JSONL format

Example

To put a document:

$ curl -X PUT \
     --header 'Content-Type: application/json' \
-    --data-binary '{"text": "Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust."}' \
+    --data-binary @./examples/doc_1.json \
     'http://localhost:8000/index/docs/1'
 
+

To put documents in bulk:

+
$ curl -X PUT \
+    --header 'Content-Type: application/json' \
+    --data-binary @./examples/bulk_put.jsonl \
+    'http://localhost:8000/index/docs'
+

Get API

Get API gets a document with the specified ID.

Request

@@ -1226,16 +1128,28 @@

Delete API

Delete API deletes a document with the specified ID.

Request

DELETE /index/docs/<DOC_ID>
+DELETE /index/docs
 

Path parameters

  • <DOC_ID>
    A unique value that identifies the document in the index.
+

Request body

+
    +
  • <DOCUMENT>
    +Document(s) expressed in JSONL format
  • +

Examples

To delete a document:

$ curl -X DELETE 'http://localhost:8000/index/docs/1'
 
+

To delete documents in bulk:

+
$ curl -X DELETE \
+    --header 'Content-Type: application/json' \
+    --data-binary @./examples/bulk_delete.jsonl \
+    'http://localhost:8000/index/docs'
+

Search API

Search API searches documents from the index.

Request

diff --git a/docs/reference/apis/delete.html b/docs/reference/apis/delete.html index c80523f..78bc35c 100644 --- a/docs/reference/apis/delete.html +++ b/docs/reference/apis/delete.html @@ -152,15 +152,27 @@

Delete API

Delete API deletes a document with the specified ID.

Request

DELETE /index/docs/<DOC_ID>
+DELETE /index/docs
 

Path parameters

  • <DOC_ID>
    A unique value that identifies the document in the index.
+

Request body

+
    +
  • <DOCUMENT>
    +Document(s) expressed in JSONL format
  • +

Examples

To delete a document:

$ curl -X DELETE 'http://localhost:8000/index/docs/1'
+
+

To delete documents in bulk:

+
$ curl -X DELETE \
+    --header 'Content-Type: application/json' \
+    --data-binary @./examples/bulk_delete.jsonl \
+    'http://localhost:8000/index/docs'
 
diff --git a/docs/reference/apis/put.html b/docs/reference/apis/put.html index c816bf0..d924bb1 100644 --- a/docs/reference/apis/put.html +++ b/docs/reference/apis/put.html @@ -152,6 +152,7 @@

Put API

Put API puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.

Request

PUT /index/docs/<DOC_ID>
+PUT /index/docs
 

Path parameters

Request body

    -
  • <FIELDS>
    -Document fields expressed in JSON format.
  • +
  • <DOCUMENT>
    +Document(s) expressed in JSON or JSONL format

Example

To put a document:

$ curl -X PUT \
     --header 'Content-Type: application/json' \
-    --data-binary '{"text": "Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust."}' \
+    --data-binary @./examples/doc_1.json \
     'http://localhost:8000/index/docs/1'
 
+

To put documents in bulk:

+
$ curl -X PUT \
+    --header 'Content-Type: application/json' \
+    --data-binary @./examples/bulk_put.jsonl \
+    'http://localhost:8000/index/docs'
+
diff --git a/docs/reference/bayard/get.html b/docs/reference/bayard/get.html index b5c5d26..06526d2 100644 --- a/docs/reference/bayard/get.html +++ b/docs/reference/bayard/get.html @@ -160,16 +160,11 @@

FLAGS

OPTIONS

-s, --servers <IP:PORT>...    Server addresses in an existing cluster separated by ",". If not specified, use
                               default servers. [default: 127.0.0.1:5000]
-
-

ARGS

-
<DOC_ID>    A unique value that identifies the document in the index.
+-i, --id <ID>                 A unique value that identifies the document in the index.
 

EXAMPLES

To get a document with default options:

-
$ ./bin/bayard get 1
-
-

To get a document with options:

-
$ ./bin/bayard get --servers=127.0.0.1:5001 1
+
$ ./bin/bayard get --id=1
 
diff --git a/docs/reference/bayard/put.html b/docs/reference/bayard/put.html index e015918..763268b 100644 --- a/docs/reference/bayard/put.html +++ b/docs/reference/bayard/put.html @@ -155,36 +155,23 @@

USAGE

bayard put [OPTIONS] <DOC_ID> <FIELDS>
 

FLAGS

-
-h, --help       Prints help information.
+
-b, --bulk       A flag indicating whether or not to put documents in bulk.
+-h, --help       Prints help information.
 -v, --version    Prints version information.
 

OPTIONS

-s, --servers <IP:PORT>...    Server addresses in an existing cluster separated by ",". If not specified, use
                               default servers. [default: 127.0.0.1:5000]
-
-

ARGS

-
<DOC_ID>    A unique value that identifies the document in the index. If specify an existing ID, the existing
-            document in the index is overwritten.
-<FIELDS>    Document fields expressed in JSON format.
+-i, --id <ID>                 A unique value that identifies the document in the index. If specified, the existing
+                              document ID in the document is overwritten.
+-f, --file <FILE>             File path that document(s) expressed in JSON or JSONL format.
 

EXAMPLES

-

To put a document with default options:

-
$ ./bin/bayard put 1 '{
-  "url": "https://github.com/bayard-search/bayard",
-  "name": "Bayard",
-  "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.",
-  "star": 1132,
-  "facet": ["/category/search/server", "/language/rust"]
-}'
+

To put a document:

+
$ ./bin/bayard put --id=1 --file=./examples/doc_1.json
 
-

To put a document with options:

-
$ ./bin/bayard put --servers=127.0.0.1:5001 1 '{
-  "url": "https://github.com/bayard-search/bayard",
-  "name": "Bayard",
-  "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.",
-  "star": 1132,
-  "facet": ["/category/search/server", "/language/rust"]
-}'
+

To put documents in bulk:

+
$ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl
 
diff --git a/docs/searchindex.js b/docs/searchindex.js index e5fcc42..5f5ab13 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["overview.html#bayard","overview.html#features","overview.html#source-code-repository","overview.html#docker-container-repository","overview.html#documents","building_bayard.html#building-bayard","building_bayard.html#requirements","building_bayard.html#build","getting_started.html#getting-started","getting_started.html#starting-in-standalone-mode-single-node-cluster","getting_started.html#getting-schema","getting_started.html#indexing-document","getting_started.html#getting-document","getting_started.html#searching-documents","getting_started.html#deleting-document","designing_schema.html#designing-schema","designing_schema.html#schema","designing_schema.html#field-entry","designing_schema.html#field-type","designing_schema.html#options","designing_schema.html#text-options","designing_schema.html#numeric-options","designing_schema.html#example-schema","cluster_mode.html#cluster-mode","cluster_mode.html#starting-in-cluster-mode-3-node-cluster","cluster_mode.html#cluster-peers","cluster_mode.html#remove-a-server-from-a-cluster","running_on_docker.html#running-on-docker","running_on_docker.html#pulling-docker-container","running_on_docker.html#running-docker-container","reference.html#reference","reference/bayard.html#bayard","reference/bayard.html#usage","reference/bayard.html#flags","reference/bayard.html#subcommands","reference/bayard.html#examples","reference/bayard/serve.html#bayard-serve","reference/bayard/serve.html#usage","reference/bayard/serve.html#flags","reference/bayard/serve.html#options","reference/bayard/serve.html#examples","reference/bayard/probe.html#bayard-probe","reference/bayard/probe.html#usage","reference/bayard/probe.html#flags","reference/bayard/probe.html#options","reference/bayard/probe.html#examples","reference/bayard/peers.html#bayard-peers","reference/bayard/peers.html#usage","reference/bayard/peers.html#flags","reference/bayard/peers.html#options","reference/bayard/peers.html#examples","reference/bayard/metrics.html#bayard-metrics","reference/bayard/metrics.html#usage","reference/bayard/metrics.html#flags","reference/bayard/metrics.html#options","reference/bayard/metrics.html#examples","reference/bayard/leave.html#bayard-leave","reference/bayard/leave.html#usage","reference/bayard/leave.html#flags","reference/bayard/leave.html#options","reference/bayard/leave.html#examples","reference/bayard/put.html#bayard-put","reference/bayard/put.html#usage","reference/bayard/put.html#flags","reference/bayard/put.html#options","reference/bayard/put.html#args","reference/bayard/put.html#examples","reference/bayard/get.html#bayard-get","reference/bayard/get.html#usage","reference/bayard/get.html#flags","reference/bayard/get.html#options","reference/bayard/get.html#args","reference/bayard/get.html#examples","reference/bayard/commit.html#bayard-commit","reference/bayard/commit.html#usage","reference/bayard/commit.html#flags","reference/bayard/commit.html#options","reference/bayard/commit.html#examples","reference/bayard/rollback.html#bayard-rollback","reference/bayard/rollback.html#usage","reference/bayard/rollback.html#flags","reference/bayard/rollback.html#options","reference/bayard/rollback.html#examples","reference/bayard/merge.html#bayard-merge","reference/bayard/merge.html#usage","reference/bayard/merge.html#flags","reference/bayard/merge.html#options","reference/bayard/merge.html#examples","reference/bayard/search.html#bayard-search","reference/bayard/search.html#usage","reference/bayard/search.html#flags","reference/bayard/search.html#options","reference/bayard/search.html#args","reference/bayard/search.html#examples","reference/bayard/schema.html#bayard-schema","reference/bayard/schema.html#usage","reference/bayard/schema.html#flags","reference/bayard/schema.html#options","reference/bayard/schema.html#examples","reference/bayard/schedule.html#bayard-schedule","reference/bayard/schedule.html#usage","reference/bayard/schedule.html#flags","reference/bayard/schedule.html#options","reference/bayard/schedule.html#schedule-format","reference/bayard/schedule.html#examples","reference/bayard/gateway.html#bayard-gateway","reference/bayard/gateway.html#usage","reference/bayard/gateway.html#flags","reference/bayard/gateway.html#options","reference/bayard/gateway.html#examples","reference/apis.html#rest-api","reference/apis/probe.html#probe-api","reference/apis/probe.html#request","reference/apis/probe.html#examples","reference/apis/peers.html#peers-api","reference/apis/peers.html#request","reference/apis/peers.html#examples","reference/apis/metrics.html#metrics-api","reference/apis/metrics.html#request","reference/apis/metrics.html#examples","reference/apis/put.html#put-api","reference/apis/put.html#request","reference/apis/put.html#path-parameters","reference/apis/put.html#request-body","reference/apis/put.html#example","reference/apis/get.html#get-api","reference/apis/get.html#request","reference/apis/get.html#path-parameters","reference/apis/get.html#examples","reference/apis/delete.html#delete-api","reference/apis/delete.html#request","reference/apis/delete.html#path-parameters","reference/apis/delete.html#examples","reference/apis/search.html#search-api","reference/apis/search.html#request","reference/apis/search.html#query-parameters","reference/apis/search.html#example","reference/apis/commit.html#commit-api","reference/apis/commit.html#request","reference/apis/commit.html#example","reference/apis/rollback.html#rollback-api","reference/apis/rollback.html#request","reference/apis/rollback.html#examples","reference/apis/merge.html#merge-api","reference/apis/merge.html#request","reference/apis/merge.html#examples","reference/apis/schema.html#schema-api","reference/apis/schema.html#request","reference/apis/schema.html#examples"],"index":{"documentStore":{"docInfo":{"0":{"body":47,"breadcrumbs":1,"title":1},"1":{"body":12,"breadcrumbs":1,"title":1},"10":{"body":90,"breadcrumbs":2,"title":2},"100":{"body":3,"breadcrumbs":3,"title":1},"101":{"body":10,"breadcrumbs":3,"title":1},"102":{"body":44,"breadcrumbs":3,"title":1},"103":{"body":12,"breadcrumbs":4,"title":2},"104":{"body":17,"breadcrumbs":3,"title":1},"105":{"body":9,"breadcrumbs":4,"title":2},"106":{"body":3,"breadcrumbs":3,"title":1},"107":{"body":10,"breadcrumbs":3,"title":1},"108":{"body":46,"breadcrumbs":3,"title":1},"109":{"body":14,"breadcrumbs":3,"title":1},"11":{"body":334,"breadcrumbs":2,"title":2},"110":{"body":16,"breadcrumbs":3,"title":2},"111":{"body":4,"breadcrumbs":4,"title":2},"112":{"body":1,"breadcrumbs":3,"title":1},"113":{"body":5,"breadcrumbs":3,"title":1},"114":{"body":9,"breadcrumbs":4,"title":2},"115":{"body":1,"breadcrumbs":3,"title":1},"116":{"body":6,"breadcrumbs":3,"title":1},"117":{"body":12,"breadcrumbs":4,"title":2},"118":{"body":1,"breadcrumbs":3,"title":1},"119":{"body":5,"breadcrumbs":3,"title":1},"12":{"body":38,"breadcrumbs":2,"title":2},"120":{"body":13,"breadcrumbs":4,"title":2},"121":{"body":2,"breadcrumbs":3,"title":1},"122":{"body":13,"breadcrumbs":4,"title":2},"123":{"body":6,"breadcrumbs":4,"title":2},"124":{"body":24,"breadcrumbs":3,"title":1},"125":{"body":5,"breadcrumbs":3,"title":1},"126":{"body":1,"breadcrumbs":3,"title":1},"127":{"body":6,"breadcrumbs":4,"title":2},"128":{"body":4,"breadcrumbs":3,"title":1},"129":{"body":6,"breadcrumbs":4,"title":2},"13":{"body":87,"breadcrumbs":2,"title":2},"130":{"body":2,"breadcrumbs":3,"title":1},"131":{"body":6,"breadcrumbs":4,"title":2},"132":{"body":6,"breadcrumbs":3,"title":1},"133":{"body":5,"breadcrumbs":4,"title":2},"134":{"body":1,"breadcrumbs":3,"title":1},"135":{"body":67,"breadcrumbs":4,"title":2},"136":{"body":15,"breadcrumbs":3,"title":1},"137":{"body":6,"breadcrumbs":4,"title":2},"138":{"body":1,"breadcrumbs":3,"title":1},"139":{"body":5,"breadcrumbs":3,"title":1},"14":{"body":39,"breadcrumbs":2,"title":2},"140":{"body":10,"breadcrumbs":4,"title":2},"141":{"body":1,"breadcrumbs":3,"title":1},"142":{"body":5,"breadcrumbs":3,"title":1},"143":{"body":6,"breadcrumbs":4,"title":2},"144":{"body":1,"breadcrumbs":3,"title":1},"145":{"body":6,"breadcrumbs":3,"title":1},"146":{"body":7,"breadcrumbs":4,"title":2},"147":{"body":1,"breadcrumbs":3,"title":1},"148":{"body":6,"breadcrumbs":3,"title":1},"15":{"body":0,"breadcrumbs":2,"title":2},"16":{"body":4,"breadcrumbs":1,"title":1},"17":{"body":23,"breadcrumbs":2,"title":2},"18":{"body":69,"breadcrumbs":2,"title":2},"19":{"body":0,"breadcrumbs":1,"title":1},"2":{"body":2,"breadcrumbs":3,"title":3},"20":{"body":91,"breadcrumbs":2,"title":2},"21":{"body":39,"breadcrumbs":2,"title":2},"22":{"body":77,"breadcrumbs":2,"title":2},"23":{"body":16,"breadcrumbs":2,"title":2},"24":{"body":102,"breadcrumbs":6,"title":6},"25":{"body":24,"breadcrumbs":2,"title":2},"26":{"body":33,"breadcrumbs":3,"title":3},"27":{"body":9,"breadcrumbs":2,"title":2},"28":{"body":9,"breadcrumbs":3,"title":3},"29":{"body":15,"breadcrumbs":3,"title":3},"3":{"body":1,"breadcrumbs":3,"title":3},"30":{"body":2,"breadcrumbs":1,"title":1},"31":{"body":6,"breadcrumbs":2,"title":1},"32":{"body":2,"breadcrumbs":2,"title":1},"33":{"body":10,"breadcrumbs":2,"title":1},"34":{"body":145,"breadcrumbs":2,"title":1},"35":{"body":5,"breadcrumbs":2,"title":1},"36":{"body":5,"breadcrumbs":4,"title":2},"37":{"body":3,"breadcrumbs":3,"title":1},"38":{"body":10,"breadcrumbs":3,"title":1},"39":{"body":123,"breadcrumbs":3,"title":1},"4":{"body":2,"breadcrumbs":1,"title":1},"40":{"body":22,"breadcrumbs":3,"title":1},"41":{"body":5,"breadcrumbs":4,"title":2},"42":{"body":3,"breadcrumbs":3,"title":1},"43":{"body":10,"breadcrumbs":3,"title":1},"44":{"body":9,"breadcrumbs":3,"title":1},"45":{"body":12,"breadcrumbs":3,"title":1},"46":{"body":10,"breadcrumbs":4,"title":2},"47":{"body":3,"breadcrumbs":3,"title":1},"48":{"body":10,"breadcrumbs":3,"title":1},"49":{"body":9,"breadcrumbs":3,"title":1},"5":{"body":0,"breadcrumbs":2,"title":2},"50":{"body":14,"breadcrumbs":3,"title":1},"51":{"body":13,"breadcrumbs":4,"title":2},"52":{"body":3,"breadcrumbs":3,"title":1},"53":{"body":10,"breadcrumbs":3,"title":1},"54":{"body":9,"breadcrumbs":3,"title":1},"55":{"body":12,"breadcrumbs":3,"title":1},"56":{"body":11,"breadcrumbs":4,"title":2},"57":{"body":3,"breadcrumbs":3,"title":1},"58":{"body":10,"breadcrumbs":3,"title":1},"59":{"body":25,"breadcrumbs":3,"title":1},"6":{"body":11,"breadcrumbs":1,"title":1},"60":{"body":13,"breadcrumbs":3,"title":1},"61":{"body":14,"breadcrumbs":4,"title":2},"62":{"body":5,"breadcrumbs":3,"title":1},"63":{"body":10,"breadcrumbs":3,"title":1},"64":{"body":14,"breadcrumbs":3,"title":1},"65":{"body":19,"breadcrumbs":3,"title":1},"66":{"body":58,"breadcrumbs":3,"title":1},"67":{"body":6,"breadcrumbs":3,"title":1},"68":{"body":3,"breadcrumbs":3,"title":1},"69":{"body":10,"breadcrumbs":3,"title":1},"7":{"body":15,"breadcrumbs":1,"title":1},"70":{"body":14,"breadcrumbs":3,"title":1},"71":{"body":6,"breadcrumbs":3,"title":1},"72":{"body":10,"breadcrumbs":3,"title":1},"73":{"body":7,"breadcrumbs":4,"title":2},"74":{"body":3,"breadcrumbs":3,"title":1},"75":{"body":10,"breadcrumbs":3,"title":1},"76":{"body":14,"breadcrumbs":3,"title":1},"77":{"body":12,"breadcrumbs":3,"title":1},"78":{"body":11,"breadcrumbs":4,"title":2},"79":{"body":3,"breadcrumbs":3,"title":1},"8":{"body":0,"breadcrumbs":2,"title":2},"80":{"body":10,"breadcrumbs":3,"title":1},"81":{"body":14,"breadcrumbs":3,"title":1},"82":{"body":12,"breadcrumbs":3,"title":1},"83":{"body":7,"breadcrumbs":4,"title":2},"84":{"body":3,"breadcrumbs":3,"title":1},"85":{"body":10,"breadcrumbs":3,"title":1},"86":{"body":14,"breadcrumbs":3,"title":1},"87":{"body":14,"breadcrumbs":3,"title":1},"88":{"body":6,"breadcrumbs":4,"title":2},"89":{"body":4,"breadcrumbs":3,"title":1},"9":{"body":126,"breadcrumbs":6,"title":6},"90":{"body":32,"breadcrumbs":3,"title":1},"91":{"body":56,"breadcrumbs":3,"title":1},"92":{"body":5,"breadcrumbs":3,"title":1},"93":{"body":18,"breadcrumbs":3,"title":1},"94":{"body":8,"breadcrumbs":4,"title":2},"95":{"body":3,"breadcrumbs":3,"title":1},"96":{"body":10,"breadcrumbs":3,"title":1},"97":{"body":14,"breadcrumbs":3,"title":1},"98":{"body":14,"breadcrumbs":3,"title":1},"99":{"body":6,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"Join the chat at https://gitter.im/bayard-search/bayard License: MIT Bayard is a full-text search and indexing server written in Rust built on top of Tantivy that implements The Raft Consensus Algorithm ( raft-rs ) and The gRPC ( grpc-rs ). Achieves consensus across all the nodes, ensures every change made to the system is made to a quorum of nodes. Bayard makes easy for programmers to develop search applications with advanced features and high availability.","breadcrumbs":"Bayard","id":"0","title":"Bayard"},"1":{"body":"Full-text search/indexing Index replication Bringing up a cluster Command line interface is available","breadcrumbs":"Features","id":"1","title":"Features"},"10":{"body":"You can confirm current schema with the following command: $ ./bin/bayard schema | jq . You'll see the result in JSON format. The result of the above command is: [ { \"name\": \"id\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"basic\", \"tokenizer\": \"raw\" }, \"stored\": true } }, { \"name\": \"url\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"freq\", \"tokenizer\": \"default\" }, \"stored\": true } }, { \"name\": \"name\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"description\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"popularity\", \"type\": \"u64\", \"options\": { \"indexed\": true, \"fast\": \"single\", \"stored\": true } }, { \"name\": \"category\", \"type\": \"hierarchical_facet\" }, { \"name\": \"timestamp\", \"type\": \"date\", \"options\": { \"indexed\": true, \"fast\": \"single\", \"stored\": true } }\n]","breadcrumbs":"Getting schema","id":"10","title":"Getting schema"},"100":{"body":"bayard schedule [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"100","title":"USAGE"},"101":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"101","title":"FLAGS"},"102":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-c, --commit Schedule for automatic commit in a cron-like format. If not specified, use default schedule. [default: 0/10 * * * * * *]\n-m, --merge Schedule for automatic merge in a cron-like format. If not specified, use default schedule. [default: 0 0 2 * * * *]","breadcrumbs":"Reference » bayard » OPTIONS","id":"102","title":"OPTIONS"},"103":{"body":"The scheduling format is as follows: sec min hour day-of-month month day-of-week year\n* * * * * * *","breadcrumbs":"Reference » bayard » SCHEDULE FORMAT","id":"103","title":"SCHEDULE FORMAT"},"104":{"body":"To start job scheduler with default options: $ ./bin/bayard schedule To start job scheduler with options: $ ./bin/bayard schedule --commit=\"0/10 * * * * * *\" --merge=\"0 0 2 * * * *\"","breadcrumbs":"Reference » bayard » EXAMPLES","id":"104","title":"EXAMPLES"},"105":{"body":"The bayard gateway CLI starts a gateway for access the server over HTTP.","breadcrumbs":"Reference » bayard » bayard gateway","id":"105","title":"bayard gateway"},"106":{"body":"bayard gateway [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"106","title":"USAGE"},"107":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"107","title":"FLAGS"},"108":{"body":"-H, --host Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]\n-P, --port Port number. This port is used for communication via HTTP. If not specified, use the default port. [default: 8000]\n-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"108","title":"OPTIONS"},"109":{"body":"To start gateway with default options: $ ./bin/bayard gateway To start gateway with options: $ ./bin/bayard gateway --host=localhost --port=8080 --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"109","title":"EXAMPLES"},"11":{"body":"You can index documents with the following command: $ ./bin/bayard put 1 '{ \"url\": \"https://github.com/bayard-search/bayard\", \"name\": \"Bayard\", \"description\": \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\", \"popularity\": 1152, \"category\": [\"/category/search/server\", \"/language/rust\"], \"timestamp\": \"2019-12-19T10:41:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 2 '{ \"url\": \"https://lucene.apache.org/solr/\", \"name\": \"Apache Solr\", \"description\": \"Solr is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more.\", \"popularity\": 3135, \"category\": [\"/category/search/server\", \"/language/java\"], \"timestamp\": \"2019-12-19T14:08:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 3 '{ \"url\": \"https://www.elastic.co/products/elasticsearch\", \"name\": \"Elasticsearch\", \"description\": \"Elasticsearch is a distributed, open source search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured.\", \"popularity\": 46054, \"category\": [\"/category/search/server\", \"/language/java\"], \"timestamp\": \"2019-12-19T08:19:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 4 '{ \"url\": \"https://github.com/mosuka/blast\", \"name\": \"Blast\", \"description\": \"Blast is a full text search and indexing server, written in Go, built on top of Bleve.\", \"popularity\": 654, \"category\": [\"/category/search/server\", \"/language/go\"], \"timestamp\": \"2019-10-18T19:50:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 5 '{ \"url\": \"https://github.com/go-ego/riot\", \"name\": \"Riot\", \"description\": \"Riot is Go Open Source, Distributed, Simple and efficient full text search engine.\", \"popularity\": 4948, \"category\": [\"/category/search/server\", \"/language/go\"], \"timestamp\": \"2019-12-16T07:12:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 6 '{ \"url\": \"https://github.com/toshi-search/Toshi\", \"name\": \"Toshi\", \"description\": \"Toshi is meant to be a full-text search engine similar to Elasticsearch. Toshi strives to be to Elasticsearch what Tantivy is to Lucene.\", \"popularity\": 2448, \"category\": [\"/category/search/server\", \"/language/rust\"], \"timestamp\": \"2019-12-02T04:00:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 7 '{ \"url\": \"https://github.com/valeriansaliou/sonic\", \"name\": \"Sonic\", \"description\": \"Sonic is a fast, lightweight and schema-less search backend.\", \"popularity\": 7895, \"category\": [\"/category/search/server\", \"/language/rust\"], \"timestamp\": \"2019-12-10T23:13:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 8 '{ \"url\": \"https://github.com/tantivy-search/tantivy\", \"name\": \"Tantivy\", \"description\": \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\", \"popularity\": 3142, \"category\": [\"/category/search/library\", \"/language/rust\"], \"timestamp\": \"2019-12-19T10:07:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 9 '{ \"url\": \"https://lucene.apache.org/\", \"name\": \"Lucene\", \"description\": \"Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java.\", \"popularity\": 3135, \"category\": [\"/category/search/library\", \"/language/java\"], \"timestamp\": \"2019-12-19T14:08:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 10 '{ \"url\": \"https://blevesearch.com/\", \"name\": \"Bleve\", \"description\": \"Bleve is a modern text indexing library for go.\", \"popularity\": 6211, \"category\": [\"/category/search/library\", \"/language/go\"], \"timestamp\": \"2019-10-30T16:13:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 11 '{ \"url\": \"https://bitbucket.org/mchaput/whoosh/wiki/Home\", \"name\": \"Whoosh\", \"description\": \"Whoosh is a fast, pure Python search engine library.\", \"popularity\": 0, \"category\": [\"/category/search/library\", \"/language/python\"], \"timestamp\": \"2019-10-08T05:30:26+09:00\"\n}' | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Indexing document","id":"11","title":"Indexing document"},"110":{"body":"The REST API can be used by starting the gateway with the “bayard gateway” CLI. See the next page for details on bayard gateway: bayard gateway","breadcrumbs":"Reference » REST API","id":"110","title":"REST API"},"111":{"body":"Probe API probes the server.","breadcrumbs":"Reference » APIs » Probe API","id":"111","title":"Probe API"},"112":{"body":"GET /probe","breadcrumbs":"Reference » APIs » Request","id":"112","title":"Request"},"113":{"body":"To probe a server: $ curl -X GET 'http://localhost:8000/probe'","breadcrumbs":"Reference » APIs » Examples","id":"113","title":"Examples"},"114":{"body":"Peers API shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » APIs » Peers API","id":"114","title":"Peers API"},"115":{"body":"GET /peers","breadcrumbs":"Reference » APIs » Request","id":"115","title":"Request"},"116":{"body":"To show peers of the cluster: $ curl -X GET 'http://localhost:8000/peers'","breadcrumbs":"Reference » APIs » Examples","id":"116","title":"Examples"},"117":{"body":"Metrics API shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.","breadcrumbs":"Reference » APIs » Metrics API","id":"117","title":"Metrics API"},"118":{"body":"GET /metrics","breadcrumbs":"Reference » APIs » Request","id":"118","title":"Request"},"119":{"body":"To show metrics: $ curl -X GET 'http://localhost:8000/metrics'","breadcrumbs":"Reference » APIs » Examples","id":"119","title":"Examples"},"12":{"body":"You can get document with the following command: $ ./bin/bayard get 1 | jq . You'll see the result in JSON format. The result of the above command is: { \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"id\": [ \"1\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1132 ], \"url\": [ \"https://github.com/bayard-search/bayard\" ]\n}","breadcrumbs":"Getting document","id":"12","title":"Getting document"},"120":{"body":"Put API puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.","breadcrumbs":"Reference » APIs » Put API","id":"120","title":"Put API"},"121":{"body":"PUT /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"121","title":"Request"},"122":{"body":" A unique value that identifies the document in the index. If specify an existing ID, the existing document in the index is overwritten.","breadcrumbs":"Reference » APIs » Path parameters","id":"122","title":"Path parameters"},"123":{"body":" Document fields expressed in JSON format.","breadcrumbs":"Reference » APIs » Request body","id":"123","title":"Request body"},"124":{"body":"To put a document: $ curl -X PUT \\ --header 'Content-Type: application/json' \\ --data-binary '{\"text\": \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\"}' \\ 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Example","id":"124","title":"Example"},"125":{"body":"Get API gets a document with the specified ID.","breadcrumbs":"Reference » APIs » Get API","id":"125","title":"Get API"},"126":{"body":"GET /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"126","title":"Request"},"127":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"127","title":"Path parameters"},"128":{"body":"To get a document: $ curl -X GET 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"128","title":"Examples"},"129":{"body":"Delete API deletes a document with the specified ID.","breadcrumbs":"Reference » APIs » Delete API","id":"129","title":"Delete API"},"13":{"body":"You can search documents with the following command: $ ./bin/bayard search --facet-field=category --facet-prefix=/category/search --facet-prefix=/language description:rust | jq . You'll see the result in JSON format. The result of the above command is: { \"count\": 2, \"docs\": [ { \"fields\": { \"category\": [ \"/category/search/library\", \"/language/rust\" ], \"description\": [ \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\" ], \"id\": [ \"8\" ], \"name\": [ \"Tantivy\" ], \"popularity\": [ 3100 ], \"url\": [ \"https://github.com/tantivy-search/tantivy\" ] }, \"score\": 1.5722498 }, { \"fields\": { \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"id\": [ \"1\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1132 ], \"url\": [ \"https://github.com/bayard-search/bayard\" ] }, \"score\": 1.5331805 } ], \"facet\": { \"category\": { \"/category/search/server\": 1, \"/category/search/library\": 1, \"/language/rust\": 2 } }\n}","breadcrumbs":"Searching documents","id":"13","title":"Searching documents"},"130":{"body":"DELETE /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"130","title":"Request"},"131":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"131","title":"Path parameters"},"132":{"body":"To delete a document: $ curl -X DELETE 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"132","title":"Examples"},"133":{"body":"Search API searches documents from the index.","breadcrumbs":"Reference » APIs » Search API","id":"133","title":"Search API"},"134":{"body":"GET /index/search","breadcrumbs":"Reference » APIs » Request","id":"134","title":"Request"},"135":{"body":"from Start position of fetching results. If not specified, use default value. [default: 0] limit Limitation of amount that document to be returned. If not specified, use default value. [default: 10] exclude_count A flag indicating whether or not to exclude hit count in the search results. If not specified, use default value. [default: true] exclude_docs A flag indicating whether or not to exclude hit documents in the search results. If not specified, use default value. [default: true] query Query string to search the index. facet_field Hierarchical facet field name. facet_prefix Hierarchical facet field value prefix.","breadcrumbs":"Reference » APIs » Query parameters","id":"135","title":"Query parameters"},"136":{"body":"To search documents from the index: $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&exclude_count' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&exclude_docs' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&facet_field=category&facet_prefix=/language&facet_prefix=/category/search'","breadcrumbs":"Reference » APIs » Example","id":"136","title":"Example"},"137":{"body":"Commit API commits updates made to the index.","breadcrumbs":"Reference » APIs » Commit API","id":"137","title":"Commit API"},"138":{"body":"GET /index/commit","breadcrumbs":"Reference » APIs » Request","id":"138","title":"Request"},"139":{"body":"To commit an index: $ curl -X GET 'http://localhost:8000/index/commit'","breadcrumbs":"Reference » APIs » Example","id":"139","title":"Example"},"14":{"body":"You can delete document with the following command: $ ./bin/bayard delete 1\n$ ./bin/bayard delete 2\n$ ./bin/bayard delete 3\n$ ./bin/bayard delete 4\n$ ./bin/bayard delete 5\n$ ./bin/bayard delete 6\n$ ./bin/bayard delete 7\n$ ./bin/bayard delete 8\n$ ./bin/bayard delete 9\n$ ./bin/bayard delete 10\n$ ./bin/bayard delete 11\n$ ./bin/bayard commit","breadcrumbs":"Deleting document","id":"14","title":"Deleting document"},"140":{"body":"Rollback API rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » APIs » Rollback API","id":"140","title":"Rollback API"},"141":{"body":"GET /index/rollback","breadcrumbs":"Reference » APIs » Request","id":"141","title":"Request"},"142":{"body":"To rollback an index: $ curl -X GET 'http://localhost:8000/index/rollback'","breadcrumbs":"Reference » APIs » Examples","id":"142","title":"Examples"},"143":{"body":"Merge API merges fragmented segments in the index.","breadcrumbs":"Reference » APIs » Merge API","id":"143","title":"Merge API"},"144":{"body":"GET /index/merge","breadcrumbs":"Reference » APIs » Request","id":"144","title":"Request"},"145":{"body":"To merge segments in the index: $ curl -X GET 'http://localhost:8000/index/merge'","breadcrumbs":"Reference » APIs » Examples","id":"145","title":"Examples"},"146":{"body":"Schema API shows the index schema that the server applied.","breadcrumbs":"Reference » APIs » Schema API","id":"146","title":"Schema API"},"147":{"body":"GET /index/schema","breadcrumbs":"Reference » APIs » Request","id":"147","title":"Request"},"148":{"body":"To show the index schema: $ curl -X GET 'http://localhost:8000/index/schema'","breadcrumbs":"Reference » APIs » Examples","id":"148","title":"Examples"},"15":{"body":"","breadcrumbs":"Designing schema","id":"15","title":"Designing schema"},"16":{"body":"Schema is a collection of field entries.","breadcrumbs":"Schema","id":"16","title":"Schema"},"17":{"body":"A field entry represents a field and its configuration. name A field name. type A field type. See Field type section. options Options describing how the field should be indexed. See Options section.","breadcrumbs":"Field entry","id":"17","title":"Field entry"},"18":{"body":"A field type describes the type of a field as well as how it should be handled. \"text\" String field type configuration. It can specify text options . \"u64\" Unsigned 64-bits integers field type configuration. It can specify numeric options . \"i64\" Signed 64-bits integers 64 field type configuration. It can specify numeric options . \"f64\" 64-bits float 64 field type configuration. It can specify numeric options . \"date\" Signed 64-bits Date 64 field type configuration. It can specify numeric options . \"hierarchical_facet\" Hierarchical Facet. \"bytes\" Bytes. (one per document)","breadcrumbs":"Field type","id":"18","title":"Field type"},"19":{"body":"","breadcrumbs":"Options","id":"19","title":"Options"},"2":{"body":"https://github.com/bayard-search/bayard","breadcrumbs":"Source code repository","id":"2","title":"Source code repository"},"20":{"body":"Configuration defining indexing for a text field. It defines the amount of information that should be stored about the presence of a term in a document. Essentially, should be store the term frequency and/or the positions, the name of the tokenizer that should be used to process the field. indexing record \"basic\" Records only the document IDs. \"freq\" Records the document ids as well as the term frequency. The term frequency can help giving better scoring of the documents. \"position\" Records the document id, the term frequency and the positions of the occurences in the document. Positions are required to run phrase queries. tokenizer \"default\" Chops the text on according to whitespace and punctuation, removes tokens that are too long, and lowercases tokens. \"raw\" Does not process nor tokenize the text. \"en_stem\" Like default, but also applies stemming on the resulting tokens. Stemming can improve the recall of your search engine. stored true Text is to be stored. false Text is not to be stored.","breadcrumbs":"Text options","id":"20","title":"Text options"},"21":{"body":"Configuration defining indexing for a numeric field. indexed true Value is to be indexed. false Value is not to be indexed. stored true Value is to be stored. false Value is not to be stored. fast: \"single\" The document must have exactly one value associated to the document. \"multi\" The document can have any number of values associated to the document. This is more memory and CPU expensive than the SingleValue solution.","breadcrumbs":"Numeric options","id":"21","title":"Numeric options"},"22":{"body":"Here is a sample schema: [ { \"name\": \"id\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"basic\", \"tokenizer\": \"raw\" }, \"stored\": true } }, { \"name\": \"url\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"freq\", \"tokenizer\": \"default\" }, \"stored\": true } }, { \"name\": \"name\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"description\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"popularity\", \"type\": \"u64\", \"options\": { \"indexed\": true, \"stored\": true, \"fast\": \"single\" } }, { \"name\": \"category\", \"type\": \"hierarchical_facet\" }, { \"name\": \"timestamp\", \"type\": \"date\", \"options\": { \"indexed\": true, \"stored\": true, \"fast\": \"single\" } }\n]","breadcrumbs":"Example schema","id":"22","title":"Example schema"},"23":{"body":"Bayard supports booting in cluster mode by itself. No external software is required, and you can easily bring up a cluster by adding a command flags.","breadcrumbs":"Cluster mode","id":"23","title":"Cluster mode"},"24":{"body":"Running in standalone is not fault tolerant. If you need to improve fault tolerance, start servers in cluster mode. You can start servers in cluster mode with the following command: $ ./bin/bayard serve \\ --id=1 \\ --host=0.0.0.0 \\ --port=5001 \\ --data-directory=./data/1 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id $ ./bin/bayard serve \\ --id=2 \\ --host=0.0.0.0 \\ --port=5002 \\ --peers=\"1=0.0.0.0:5001\" \\ --data-directory=./data/2 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id $ ./bin/bayard serve \\ --id=3 \\ --host=0.0.0.0 \\ --port=5003 \\ --peers=\"1=0.0.0.0:5001,2=0.0.0.0:5002\" \\ --data-directory=./data/3 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id The above commands run servers on the same host, so each server must listen on a different port. This would not be necessary if each server runs on a different host. Recommend 3 or more odd number of servers in the cluster to avoid split-brain. When deploying to a single host, if that host goes down due to hardware failure, all of the servers in the cluster will be stopped, so recommend deploying to a different host.","breadcrumbs":"Starting in cluster mode (3-node cluster)","id":"24","title":"Starting in cluster mode (3-node cluster)"},"25":{"body":"You can check the peers in the cluster with the following command: $ ./bin/bayard peers --servers localhost:5001 | jq . You'll see the result in JSON format. The result of the above command is: { \"1\": \"0.0.0.0:5001\", \"2\": \"0.0.0.0:5002\", \"3\": \"0.0.0.0:5003\"\n}","breadcrumbs":"Cluster peers","id":"25","title":"Cluster peers"},"26":{"body":"If one of the servers in a cluster goes down due to a hardware failure and raft logs and metadata is lost, that server cannot join the cluster again. If you want the server to join the cluster again, you must remove it from the cluster. The following command deletes the server with id=3 from the cluster: $ ./bin/bayard leave \\ --servers=127.0.0.1:5001 \\ --id=3","breadcrumbs":"Remove a server from a cluster","id":"26","title":"Remove a server from a cluster"},"27":{"body":"See the available Docker container image version at the following URL: https://hub.docker.com/r/bayardsearch/bayard/tags/","breadcrumbs":"Running on Docker","id":"27","title":"Running on Docker"},"28":{"body":"You can pull the Docker container image with the following command: $ docker pull bayardsearch/bayard:latest","breadcrumbs":"Pulling Docker container","id":"28","title":"Pulling Docker container"},"29":{"body":"You can run the Docker container image with the following command: $ docker run --rm --name bayard \\ -p 5000:5000 \\ bayardsearch/bayard:latest serve","breadcrumbs":"Running Docker container","id":"29","title":"Running Docker container"},"3":{"body":"https://hub.docker.com/r/bayardsearch/bayard","breadcrumbs":"Docker container repository","id":"3","title":"Docker container repository"},"30":{"body":"bayard APIs","breadcrumbs":"Reference","id":"30","title":"Reference"},"31":{"body":"The bayard CLI manages server, cluster and index.","breadcrumbs":"Reference » bayard","id":"31","title":"bayard"},"32":{"body":"bayard ","breadcrumbs":"Reference » USAGE","id":"32","title":"USAGE"},"33":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » FLAGS","id":"33","title":"FLAGS"},"34":{"body":"serve The `bayard serve` CLI starts the server.\nprobe The `bayard probe` CLI probes the server.\npeers The `bayard peers` CLI shows the peer addresses of the cluster that the specified server is joining.\nmetrics The `bayard metrics` CLI shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.\nleave The `bayard leave` CLI removes the server with the specified ID from the cluster that the specified server is joining.\nput The `bayard put` CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.\nget The `bayard get` CLI gets a document with the specified ID.\ndelete The `bayard delete` CLI deletes a document with the specified ID.\ncommit The `bayard commit` CLI commits updates made to the index.\nrollback The `bayard rollback` CLI rolls back any updates made to the index to the last committed state.\nmerge The `bayard merge` CLI merges fragmented segments in the index.\nsearch The `bayard search` CLI searches documents from the index.\nschema The `bayard schema` CLI shows the index schema that the server applied.\nschedule The `bayard schedule` CLI starts the job scheduler.\ngateway The `bayard gateway` CLI starts a gateway for access the server over HTTP.\nhelp Prints this message or the help of the given subcommand(s)","breadcrumbs":"Reference » SUBCOMMANDS","id":"34","title":"SUBCOMMANDS"},"35":{"body":"To print version information: $ ./bin/bayard -v","breadcrumbs":"Reference » EXAMPLES","id":"35","title":"EXAMPLES"},"36":{"body":"The bayard serve CLI starts the server.","breadcrumbs":"Reference » bayard » bayard serve","id":"36","title":"bayard serve"},"37":{"body":"bayard serve [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"37","title":"USAGE"},"38":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"38","title":"FLAGS"},"39":{"body":"-i, --id Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default ID. [default: 1]\n-H, --host Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]\n-P, --port Port number. This port is used for communication via gRPC. If not specified, use the default port. [default: 5000]\n-p, --peers ... Server ID and addresses in an existing cluster separated by \",\". If specified, the server will join the cluster.\n-d, --data-directory Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory. [default: ./data]\n-s, --schema-file Schema file. Must specify An existing file name. If not specified, use the default schema file. [default: ./etc/schema.json]\n-u, --unique-key-field-name Unique key field name. Specify the field name to be treated as a unique key in the field defined in the schema. If not specified, use the default unique key field name. [default: id]","breadcrumbs":"Reference » bayard » OPTIONS","id":"39","title":"OPTIONS"},"4":{"body":"https://bayard-search.github.io/bayard/","breadcrumbs":"Documents","id":"4","title":"Documents"},"40":{"body":"To start a server with default options: $ ./bin/bayard serve To start a server with options: $ ./bin/bayard serve \\ --id=1 \\ --host=0.0.0.0 \\ --port=5001 \\ --data-directory=./data/1 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id","breadcrumbs":"Reference » bayard » EXAMPLES","id":"40","title":"EXAMPLES"},"41":{"body":"The bayard probe CLI probes the server.","breadcrumbs":"Reference » bayard » bayard probe","id":"41","title":"bayard probe"},"42":{"body":"bayard probe [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"42","title":"USAGE"},"43":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"43","title":"FLAGS"},"44":{"body":"-s, --server Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"44","title":"OPTIONS"},"45":{"body":"To probe a server with default options: $ ./bin/bayard probe To probe a server with options: $ ./bin/bayard probe --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"45","title":"EXAMPLES"},"46":{"body":"The bayard peers CLI shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard peers","id":"46","title":"bayard peers"},"47":{"body":"bayard peers [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"47","title":"USAGE"},"48":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"48","title":"FLAGS"},"49":{"body":"-s, --server Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"49","title":"OPTIONS"},"5":{"body":"","breadcrumbs":"Building Bayard","id":"5","title":"Building Bayard"},"50":{"body":"To show peers of the cluster with default options: $ ./bin/bayard peers To show peers of the cluster with options: $ ./bin/bayard peers --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"50","title":"EXAMPLES"},"51":{"body":"The bayard metrics CLI shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.","breadcrumbs":"Reference » bayard » bayard metrics","id":"51","title":"bayard metrics"},"52":{"body":"bayard metrics [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"52","title":"USAGE"},"53":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"53","title":"FLAGS"},"54":{"body":"-s, --server IP:PORT Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"54","title":"OPTIONS"},"55":{"body":"To show metrics with default options: $ ./bin/bayard metrics To show metrics with options: $ ./bin/bayard metrics --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"55","title":"EXAMPLES"},"56":{"body":"The bayard leave CLI removes the server with the specified ID from the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard leave","id":"56","title":"bayard leave"},"57":{"body":"bayard leave [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"57","title":"USAGE"},"58":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"58","title":"FLAGS"},"59":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-i, --id Node ID to be removed from the cluster that specified server is joining. [default: 1]","breadcrumbs":"Reference » bayard » OPTIONS","id":"59","title":"OPTIONS"},"6":{"body":"The following products are required to build Bayrad: Rust >= 1.39.0 make >= 3.81 protoc >= 3.9.2","breadcrumbs":"Requirements","id":"6","title":"Requirements"},"60":{"body":"To remove a server with default options: $ ./bin/bayard leave To probe a server with options: $ ./bin/bayard leave --servers=127.0.0.1:5001 --id=3","breadcrumbs":"Reference » bayard » EXAMPLES","id":"60","title":"EXAMPLES"},"61":{"body":"The bayard put CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.","breadcrumbs":"Reference » bayard » bayard put","id":"61","title":"bayard put"},"62":{"body":"bayard put [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"62","title":"USAGE"},"63":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"63","title":"FLAGS"},"64":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"64","title":"OPTIONS"},"65":{"body":" A unique value that identifies the document in the index. If specify an existing ID, the existing document in the index is overwritten.\n Document fields expressed in JSON format.","breadcrumbs":"Reference » bayard » ARGS","id":"65","title":"ARGS"},"66":{"body":"To put a document with default options: $ ./bin/bayard put 1 '{ \"url\": \"https://github.com/bayard-search/bayard\", \"name\": \"Bayard\", \"description\": \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\", \"star\": 1132, \"facet\": [\"/category/search/server\", \"/language/rust\"]\n}' To put a document with options: $ ./bin/bayard put --servers=127.0.0.1:5001 1 '{ \"url\": \"https://github.com/bayard-search/bayard\", \"name\": \"Bayard\", \"description\": \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\", \"star\": 1132, \"facet\": [\"/category/search/server\", \"/language/rust\"]\n}'","breadcrumbs":"Reference » bayard » EXAMPLES","id":"66","title":"EXAMPLES"},"67":{"body":"The bayard get CLI gets a document with the specified ID.","breadcrumbs":"Reference » bayard » bayard get","id":"67","title":"bayard get"},"68":{"body":"bayard get [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"68","title":"USAGE"},"69":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"69","title":"FLAGS"},"7":{"body":"Build Bayard with the following command: $ make build When the build is successful, the binary file is output to the following directory: $ ls ./bin","breadcrumbs":"Build","id":"7","title":"Build"},"70":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"70","title":"OPTIONS"},"71":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » bayard » ARGS","id":"71","title":"ARGS"},"72":{"body":"To get a document with default options: $ ./bin/bayard get 1 To get a document with options: $ ./bin/bayard get --servers=127.0.0.1:5001 1","breadcrumbs":"Reference » bayard » EXAMPLES","id":"72","title":"EXAMPLES"},"73":{"body":"The bayard commit CLI commits updates made to the index.","breadcrumbs":"Reference » bayard » bayard commit","id":"73","title":"bayard commit"},"74":{"body":"bayard commit [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"74","title":"USAGE"},"75":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"75","title":"FLAGS"},"76":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"76","title":"OPTIONS"},"77":{"body":"To commit an index with default options: $ ./bin/bayard commit To commit an index with options: $ ./bin/bayard commit --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"77","title":"EXAMPLES"},"78":{"body":"The bayard rollback CLI rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » bayard » bayard rollback","id":"78","title":"bayard rollback"},"79":{"body":"bayard rollback [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"79","title":"USAGE"},"8":{"body":"","breadcrumbs":"Getting started","id":"8","title":"Getting started"},"80":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"80","title":"FLAGS"},"81":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"81","title":"OPTIONS"},"82":{"body":"To rollback an index with default options: $ ./bin/bayard rollback To rollback an index with options: $ ./bin/bayard rollback --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"82","title":"EXAMPLES"},"83":{"body":"The bayard merge CLI merges fragmented segments in the index.","breadcrumbs":"Reference » bayard » bayard merge","id":"83","title":"bayard merge"},"84":{"body":"bayard merge [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"84","title":"USAGE"},"85":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"85","title":"FLAGS"},"86":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"86","title":"OPTIONS"},"87":{"body":"To merge segments in the index with default options: $ ./bin/bayard merge To merge segments in the index with options: $ ./bin/bayard merge --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"87","title":"EXAMPLES"},"88":{"body":"The bayard search CLI searches documents from the index.","breadcrumbs":"Reference » bayard » bayard search","id":"88","title":"bayard search"},"89":{"body":"bayard search [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"89","title":"USAGE"},"9":{"body":"Running node in standalone mode is easy. You can start server with the following command: $ ./bin/bayard serve You'll see a startup message like following: [2019-11-27T00:30:45Z INFO bayard::server::server src/server/server.rs:119] listening on 0.0.0.0:5000\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:723] became follower at term 0\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:295] newRaft [peers: [1], term: 0, commit: 0, applied: 0, last_index: 0, last_term: 0]\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:723] became follower at term 1 [...] [2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:1094] is starting a new election at term 1\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:743] became candidate at term 2\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:858] received MsgRequestVoteResponse from 1 at term 2\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:793] became leader at term 2","breadcrumbs":"Starting in standalone mode (Single node cluster)","id":"9","title":"Starting in standalone mode (Single node cluster)"},"90":{"body":"-c, --exclude-count A flag indicating whether or not to exclude hit count in the search results.\n-d, --exclude-docs A flag indicating whether or not to exclude hit documents in the search results\n-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"90","title":"FLAGS"},"91":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-f, --from Start position of fetching results. If not specified, use default value. [default: 0]\n-l, --limit Limitation of amount that document to be returned. If not specified, use default value. [default: 10]\n-F, --facet-field Hierarchical facet field name. [default: ]\n-V, --facet-prefix ... Hierarchical facet field value prefix.","breadcrumbs":"Reference » bayard » OPTIONS","id":"91","title":"OPTIONS"},"92":{"body":" Query string to search the index.","breadcrumbs":"Reference » bayard » ARGS","id":"92","title":"ARGS"},"93":{"body":"To search documents from the index with default options: $ ./bin/bayard search text:\"rust\" To search documents from the index with options: $ ./bin/bayard search --servers=127.0.0.1:5001 --from=10 --limit=20 text:\"rust\"","breadcrumbs":"Reference » bayard » EXAMPLES","id":"93","title":"EXAMPLES"},"94":{"body":"The bayard schema CLI shows the index schema that the server applied.","breadcrumbs":"Reference » bayard » bayard schema","id":"94","title":"bayard schema"},"95":{"body":"bayard schema [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"95","title":"USAGE"},"96":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"96","title":"FLAGS"},"97":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"97","title":"OPTIONS"},"98":{"body":"To show the index schema with default options: $ ./bin/bayard schema To show the index schema with options: $ ./bin/bayard schema --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"98","title":"EXAMPLES"},"99":{"body":"The bayard schedule CLI starts the job scheduler.","breadcrumbs":"Reference » bayard » bayard schedule","id":"99","title":"bayard schedule"}},"length":149,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"25":{"tf":1.0}}},"2":{"df":1,"docs":{"25":{"tf":1.0}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{"9":{"4":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"5":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"8":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"t":{"0":{"4":{":":{"0":{"0":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"0":{"5":{":":{"3":{"0":{":":{"2":{"6":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"135":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.0}}},"1":{".":{"3":{"9":{".":{"0":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"1":{"8":{"0":{"5":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"4":{"9":{"8":{"df":1,"docs":{"13":{"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":4,"docs":{"11":{"tf":2.0},"135":{"tf":1.0},"14":{"tf":1.0},"91":{"tf":1.0}},"t":{"2":{"3":{":":{"1":{"3":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"2":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":2.8284271247461903}}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"0":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"11":{"tf":2.8284271247461903}}},"6":{"df":0,"docs":{},"t":{"0":{"7":{":":{"1":{"2":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"1":{"9":{":":{"5":{"0":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"df":0,"docs":{},"t":{"0":{"8":{":":{"1":{"9":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"0":{"8":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":2.0}},"e":{"c":{"c":{"6":{"2":{"9":{"9":{"d":{"b":{"9":{"df":0,"docs":{},"e":{"c":{"8":{"2":{"3":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"11":{"tf":3.3166247903554},"9":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"8":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"3":{"0":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":2.0}}}},"8":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"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":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"3":{".":{"8":{"1":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"1":{"6":{":":{"1":{"3":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0}}},"4":{"6":{"0":{"5":{"4":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"5":{"0":{"0":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"6":{"2":{"1":{"1":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"18":{"tf":2.6457513110645907}}},"5":{"4":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"7":{"8":{"9":{"5":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"9":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"34":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"114":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"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":{"0":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"20":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"124":{"tf":1.0},"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"p":{"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":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"146":{"tf":1.0},"20":{"tf":1.0},"34":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":3.872983346207417},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.4641016151377544},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"124":{"tf":1.0},"7":{"tf":1.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"18":{"tf":2.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"102":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":3.872983346207417},"36":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":1.4142135623730951},"26":{"tf":2.449489742783178},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"/":{"1":{"0":{"df":1,"docs":{"104":{"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":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.23606797749979},"20":{"tf":1.0},"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"24":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"y":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":2,"docs":{"39":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":32,"docs":{"10":{"tf":1.0},"102":{"tf":2.449489742783178},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"135":{"tf":2.8284271247461903},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"39":{"tf":3.4641016151377544},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"91":{"tf":2.6457513110645907},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":3.605551275463989},"26":{"tf":1.0},"34":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0},"66":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"13":{"tf":1.0},"90":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":32,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":2.0},"34":{"tf":2.23606797749979},"4":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":2.449489742783178},"124":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"f":{"6":{"4":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"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":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}},"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":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":5,"docs":{"13":{"tf":2.0},"135":{"tf":1.4142135623730951},"18":{"tf":1.0},"66":{"tf":1.4142135623730951},"91":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":2.8284271247461903},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"=":{".":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"tf":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":{"39":{"tf":2.0},"7":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"135":{"tf":1.4142135623730951},"23":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"20":{"tf":2.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"=":{"1":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0},"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"11":{"tf":1.7320508075688772}},"e":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"135":{"tf":1.4142135623730951},"18":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}},"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":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"11":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"108":{"tf":2.0},"24":{"tf":2.23606797749979},"39":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"1":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"?":{"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"=":{"0":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"0":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"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":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"&":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":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":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"116":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"105":{"tf":1.0},"108":{"tf":1.0},"34":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"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":0,"docs":{},"m":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"0":{"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":{"b":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{".":{"c":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"18":{"tf":1.0}}},"df":0,"docs":{}},"d":{"=":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":3,"docs":{"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"34":{"tf":2.23606797749979},"39":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.449489742783178},"31":{"tf":1.0},"34":{"tf":2.23606797749979},"39":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":2.8284271247461903}},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"34":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"q":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.4641016151377544},"12":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"65":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"24":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"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":1,"docs":{"11":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":2.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"2":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"0":{"0":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"26":{"tf":1.0},"39":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":2.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"a":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"34":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"34":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"34":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}},"s":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"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":1,"docs":{"9":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"10":{"tf":2.8284271247461903},"108":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"135":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.8284271247461903},"29":{"tf":1.0},"39":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"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":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":4,"docs":{"120":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"24":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"18":{"tf":2.0},"21":{"tf":1.4142135623730951},"39":{"tf":1.0}}}}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.449489742783178},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"34":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0}}}}},"df":3,"docs":{"108":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"25":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"39":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":2.0},"9":{"tf":1.0}},"s":{"=":{"\"":{"1":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"1":{",":{"2":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"2":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"18":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"108":{"tf":2.23606797749979},"24":{"tf":1.0},"39":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"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":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"34":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"45":{"tf":2.0},"60":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":8,"docs":{"11":{"tf":3.3166247903554},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"124":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":2.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"11":{"tf":1.0},"135":{"tf":1.7320508075688772},"20":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"39":{"tf":1.0}}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"d":{"df":3,"docs":{"10":{"tf":2.0},"20":{"tf":2.0},"22":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"m":{"df":1,"docs":{"29":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"34":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"20":{"tf":1.0},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"34":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}}},"df":14,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"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":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":16,"docs":{"0":{"tf":1.4142135623730951},"11":{"tf":3.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":2.23606797749979},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"20":{"tf":1.0},"34":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"103":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"24":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":3,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":40,"docs":{"0":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":3.0},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":10,"docs":{"109":{"tf":1.0},"26":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"34":{"tf":1.7320508075688772},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"2":{"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":26,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":2.0},"18":{"tf":2.23606797749979},"34":{"tf":2.8284271247461903},"39":{"tf":3.3166247903554},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"9":{"df":1,"docs":{"9":{"tf":1.0}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"135":{"tf":1.0},"24":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.449489742783178},"20":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"39":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"135":{"tf":1.0},"18":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"34":{"tf":1.0}}},"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"x":{"df":0,"docs":{},"t":{":":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.0},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":2.449489742783178},"22":{"tf":2.0},"66":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"22":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":2.0},"20":{"tf":2.449489742783178},"22":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"p":{"df":5,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"135":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.8284271247461903}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.6457513110645907},"11":{"tf":1.0},"124":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":2.8284271247461903},"22":{"tf":2.6457513110645907}}}}}},"u":{"6":{"4":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"24":{"tf":1.7320508075688772},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"39":{"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":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"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":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"137":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":14,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"110":{"tf":1.0},"135":{"tf":2.0},"20":{"tf":1.0},"39":{"tf":2.6457513110645907},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":2.23606797749979},"21":{"tf":2.449489742783178},"65":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"20":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"x":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"25":{"tf":1.0}}},"2":{"df":1,"docs":{"25":{"tf":1.0}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{"9":{"4":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"5":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"8":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"t":{"0":{"4":{":":{"0":{"0":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"0":{"5":{":":{"3":{"0":{":":{"2":{"6":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"135":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.0}}},"1":{".":{"3":{"9":{".":{"0":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"1":{"8":{"0":{"5":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"4":{"9":{"8":{"df":1,"docs":{"13":{"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":4,"docs":{"11":{"tf":2.0},"135":{"tf":1.0},"14":{"tf":1.0},"91":{"tf":1.0}},"t":{"2":{"3":{":":{"1":{"3":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"2":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":2.8284271247461903}}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"0":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"11":{"tf":2.8284271247461903}}},"6":{"df":0,"docs":{},"t":{"0":{"7":{":":{"1":{"2":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"1":{"9":{":":{"5":{"0":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"df":0,"docs":{},"t":{"0":{"8":{":":{"1":{"9":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"0":{"8":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":2.0}},"e":{"c":{"c":{"6":{"2":{"9":{"9":{"d":{"b":{"9":{"df":0,"docs":{},"e":{"c":{"8":{"2":{"3":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"11":{"tf":3.3166247903554},"9":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"8":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"3":{"0":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":2.0}}}},"8":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"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":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"3":{".":{"8":{"1":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"1":{"6":{":":{"1":{"3":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0}}},"4":{"6":{"0":{"5":{"4":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"5":{"0":{"0":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"6":{"2":{"1":{"1":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"18":{"tf":2.6457513110645907}}},"5":{"4":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"7":{"8":{"9":{"5":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"9":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"34":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"114":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"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":{"0":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"20":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"124":{"tf":1.0},"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":40,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"30":{"tf":1.0}}},"p":{"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":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"146":{"tf":1.0},"20":{"tf":1.0},"34":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":87,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":3.872983346207417},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.4641016151377544},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"124":{"tf":1.0},"7":{"tf":1.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"18":{"tf":2.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"102":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":3.872983346207417},"36":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.8284271247461903},"25":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"/":{"1":{"0":{"df":1,"docs":{"104":{"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":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"137":{"tf":2.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":2.0},"73":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.23606797749979},"20":{"tf":1.0},"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"24":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"y":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":2,"docs":{"39":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":32,"docs":{"10":{"tf":1.0},"102":{"tf":2.449489742783178},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"135":{"tf":2.8284271247461903},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"39":{"tf":3.4641016151377544},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"91":{"tf":2.6457513110645907},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"129":{"tf":2.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":3.7416573867739413},"26":{"tf":1.0},"34":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0},"66":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"13":{"tf":1.0},"90":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":2.0},"3":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":32,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":2.0},"34":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":2.449489742783178},"124":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"f":{"6":{"4":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"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":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}},"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":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":5,"docs":{"13":{"tf":2.0},"135":{"tf":1.4142135623730951},"18":{"tf":1.0},"66":{"tf":1.4142135623730951},"91":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.8284271247461903},"18":{"tf":3.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"=":{".":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"tf":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":{"39":{"tf":2.0},"7":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"20":{"tf":2.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"=":{"1":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"105":{"tf":2.0},"106":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0},"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":6,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"11":{"tf":1.7320508075688772}},"e":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"135":{"tf":1.4142135623730951},"18":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}},"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":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"11":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"108":{"tf":2.0},"24":{"tf":2.23606797749979},"39":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"1":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"?":{"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"=":{"0":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"0":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"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":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"&":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":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":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"116":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"105":{"tf":1.0},"108":{"tf":1.0},"34":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"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":0,"docs":{},"m":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"0":{"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":{"b":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{".":{"c":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"18":{"tf":1.0}}},"df":0,"docs":{}},"d":{"=":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":3,"docs":{"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"34":{"tf":2.23606797749979},"39":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.449489742783178},"31":{"tf":1.0},"34":{"tf":2.23606797749979},"39":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":2.8284271247461903}},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"34":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"q":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.4641016151377544},"12":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"65":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"24":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"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":1,"docs":{"11":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":2.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"2":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"0":{"0":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"26":{"tf":1.0},"39":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":2.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"a":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":2.0},"145":{"tf":1.0},"34":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"34":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"117":{"tf":2.23606797749979},"118":{"tf":1.0},"119":{"tf":1.0},"34":{"tf":2.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"55":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":2.0},"9":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}},"s":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"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":1,"docs":{"9":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"10":{"tf":2.8284271247461903},"108":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"135":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.8284271247461903},"29":{"tf":1.0},"39":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"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":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":4,"docs":{"120":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"59":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"18":{"tf":2.0},"21":{"tf":1.7320508075688772},"39":{"tf":1.0}}}}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"34":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"108":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"25":{"tf":2.0},"34":{"tf":1.7320508075688772},"39":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"50":{"tf":2.0},"9":{"tf":1.0}},"s":{"=":{"\"":{"1":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"1":{",":{"2":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"2":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"18":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"108":{"tf":2.23606797749979},"24":{"tf":1.0},"39":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"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":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":8,"docs":{"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"34":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":2.0},"60":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":2.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":8,"docs":{"11":{"tf":3.3166247903554},"120":{"tf":2.0},"121":{"tf":1.0},"124":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":1.0},"66":{"tf":2.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"11":{"tf":1.0},"135":{"tf":2.0},"20":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"39":{"tf":1.0}}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"d":{"df":3,"docs":{"10":{"tf":2.0},"20":{"tf":2.0},"22":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":119,"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.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.7320508075688772},"34":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"m":{"df":1,"docs":{"29":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"34":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"20":{"tf":1.0},"24":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"29":{"tf":2.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"34":{"tf":1.7320508075688772},"99":{"tf":2.0}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":2.0},"11":{"tf":1.0},"146":{"tf":2.0},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0},"98":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}}},"df":14,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"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":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":16,"docs":{"0":{"tf":1.4142135623730951},"11":{"tf":3.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":2.449489742783178},"133":{"tf":2.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"20":{"tf":1.0},"34":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"103":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"24":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":3,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":40,"docs":{"0":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":2.449489742783178},"31":{"tf":1.0},"34":{"tf":3.0},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":10,"docs":{"109":{"tf":1.0},"26":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"34":{"tf":1.7320508075688772},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":26,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":2.0},"18":{"tf":2.23606797749979},"34":{"tf":2.8284271247461903},"39":{"tf":3.3166247903554},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"9":{"df":1,"docs":{"9":{"tf":1.0}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"135":{"tf":1.0},"24":{"tf":2.0},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"91":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.449489742783178},"20":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"39":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"135":{"tf":1.0},"18":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"34":{"tf":1.0}}},"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"x":{"df":0,"docs":{},"t":{":":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.0},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":2.6457513110645907},"22":{"tf":2.0},"66":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"22":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":2.0},"20":{"tf":2.449489742783178},"22":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"p":{"df":5,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"135":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.8284271247461903}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.6457513110645907},"11":{"tf":1.0},"124":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":3.0},"22":{"tf":2.6457513110645907}}}}}},"u":{"6":{"4":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"24":{"tf":1.7320508075688772},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"39":{"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":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"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":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"137":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":14,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"110":{"tf":1.0},"135":{"tf":2.0},"20":{"tf":1.0},"39":{"tf":2.6457513110645907},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":2.23606797749979},"21":{"tf":2.449489742783178},"65":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"20":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"x":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"title":{"root":{"3":{"df":1,"docs":{"24":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":12,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":17,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"4":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"117":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"111":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"61":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"140":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"10":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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#bayard","overview.html#features","overview.html#source-code-repository","overview.html#docker-container-repository","overview.html#documents","building_bayard.html#building-bayard","building_bayard.html#requirements","building_bayard.html#build","getting_started.html#getting-started","getting_started.html#starting-in-standalone-mode-single-node-cluster","getting_started.html#getting-schema","getting_started.html#indexing-document","getting_started.html#getting-document","getting_started.html#indexing-documents-in-bulk","getting_started.html#searching-documents","getting_started.html#deleting-document","getting_started.html#deleting-documents-in-bulk","designing_schema.html#designing-schema","designing_schema.html#schema","designing_schema.html#field-entry","designing_schema.html#field-type","designing_schema.html#options","designing_schema.html#text-options","designing_schema.html#numeric-options","designing_schema.html#example-schema","cluster_mode.html#cluster-mode","cluster_mode.html#starting-in-cluster-mode-3-node-cluster","cluster_mode.html#cluster-peers","cluster_mode.html#remove-a-server-from-a-cluster","running_on_docker.html#running-on-docker","running_on_docker.html#pulling-docker-container","running_on_docker.html#running-docker-container","reference.html#reference","reference/bayard.html#bayard","reference/bayard.html#usage","reference/bayard.html#flags","reference/bayard.html#subcommands","reference/bayard.html#examples","reference/bayard/serve.html#bayard-serve","reference/bayard/serve.html#usage","reference/bayard/serve.html#flags","reference/bayard/serve.html#options","reference/bayard/serve.html#examples","reference/bayard/probe.html#bayard-probe","reference/bayard/probe.html#usage","reference/bayard/probe.html#flags","reference/bayard/probe.html#options","reference/bayard/probe.html#examples","reference/bayard/peers.html#bayard-peers","reference/bayard/peers.html#usage","reference/bayard/peers.html#flags","reference/bayard/peers.html#options","reference/bayard/peers.html#examples","reference/bayard/metrics.html#bayard-metrics","reference/bayard/metrics.html#usage","reference/bayard/metrics.html#flags","reference/bayard/metrics.html#options","reference/bayard/metrics.html#examples","reference/bayard/leave.html#bayard-leave","reference/bayard/leave.html#usage","reference/bayard/leave.html#flags","reference/bayard/leave.html#options","reference/bayard/leave.html#examples","reference/bayard/put.html#bayard-put","reference/bayard/put.html#usage","reference/bayard/put.html#flags","reference/bayard/put.html#options","reference/bayard/put.html#examples","reference/bayard/get.html#bayard-get","reference/bayard/get.html#usage","reference/bayard/get.html#flags","reference/bayard/get.html#options","reference/bayard/get.html#examples","reference/bayard/commit.html#bayard-commit","reference/bayard/commit.html#usage","reference/bayard/commit.html#flags","reference/bayard/commit.html#options","reference/bayard/commit.html#examples","reference/bayard/rollback.html#bayard-rollback","reference/bayard/rollback.html#usage","reference/bayard/rollback.html#flags","reference/bayard/rollback.html#options","reference/bayard/rollback.html#examples","reference/bayard/merge.html#bayard-merge","reference/bayard/merge.html#usage","reference/bayard/merge.html#flags","reference/bayard/merge.html#options","reference/bayard/merge.html#examples","reference/bayard/search.html#bayard-search","reference/bayard/search.html#usage","reference/bayard/search.html#flags","reference/bayard/search.html#options","reference/bayard/search.html#args","reference/bayard/search.html#examples","reference/bayard/schema.html#bayard-schema","reference/bayard/schema.html#usage","reference/bayard/schema.html#flags","reference/bayard/schema.html#options","reference/bayard/schema.html#examples","reference/bayard/schedule.html#bayard-schedule","reference/bayard/schedule.html#usage","reference/bayard/schedule.html#flags","reference/bayard/schedule.html#options","reference/bayard/schedule.html#schedule-format","reference/bayard/schedule.html#examples","reference/bayard/gateway.html#bayard-gateway","reference/bayard/gateway.html#usage","reference/bayard/gateway.html#flags","reference/bayard/gateway.html#options","reference/bayard/gateway.html#examples","reference/apis.html#rest-api","reference/apis/probe.html#probe-api","reference/apis/probe.html#request","reference/apis/probe.html#examples","reference/apis/peers.html#peers-api","reference/apis/peers.html#request","reference/apis/peers.html#examples","reference/apis/metrics.html#metrics-api","reference/apis/metrics.html#request","reference/apis/metrics.html#examples","reference/apis/put.html#put-api","reference/apis/put.html#request","reference/apis/put.html#path-parameters","reference/apis/put.html#request-body","reference/apis/put.html#example","reference/apis/get.html#get-api","reference/apis/get.html#request","reference/apis/get.html#path-parameters","reference/apis/get.html#examples","reference/apis/delete.html#delete-api","reference/apis/delete.html#request","reference/apis/delete.html#path-parameters","reference/apis/delete.html#request-body","reference/apis/delete.html#examples","reference/apis/search.html#search-api","reference/apis/search.html#request","reference/apis/search.html#query-parameters","reference/apis/search.html#example","reference/apis/commit.html#commit-api","reference/apis/commit.html#request","reference/apis/commit.html#example","reference/apis/rollback.html#rollback-api","reference/apis/rollback.html#request","reference/apis/rollback.html#examples","reference/apis/merge.html#merge-api","reference/apis/merge.html#request","reference/apis/merge.html#examples","reference/apis/schema.html#schema-api","reference/apis/schema.html#request","reference/apis/schema.html#examples"],"index":{"documentStore":{"docInfo":{"0":{"body":47,"breadcrumbs":1,"title":1},"1":{"body":12,"breadcrumbs":1,"title":1},"10":{"body":90,"breadcrumbs":2,"title":2},"100":{"body":3,"breadcrumbs":3,"title":1},"101":{"body":10,"breadcrumbs":3,"title":1},"102":{"body":44,"breadcrumbs":3,"title":1},"103":{"body":12,"breadcrumbs":4,"title":2},"104":{"body":17,"breadcrumbs":3,"title":1},"105":{"body":9,"breadcrumbs":4,"title":2},"106":{"body":3,"breadcrumbs":3,"title":1},"107":{"body":10,"breadcrumbs":3,"title":1},"108":{"body":46,"breadcrumbs":3,"title":1},"109":{"body":14,"breadcrumbs":3,"title":1},"11":{"body":12,"breadcrumbs":2,"title":2},"110":{"body":16,"breadcrumbs":3,"title":2},"111":{"body":4,"breadcrumbs":4,"title":2},"112":{"body":1,"breadcrumbs":3,"title":1},"113":{"body":5,"breadcrumbs":3,"title":1},"114":{"body":9,"breadcrumbs":4,"title":2},"115":{"body":1,"breadcrumbs":3,"title":1},"116":{"body":6,"breadcrumbs":3,"title":1},"117":{"body":12,"breadcrumbs":4,"title":2},"118":{"body":1,"breadcrumbs":3,"title":1},"119":{"body":5,"breadcrumbs":3,"title":1},"12":{"body":38,"breadcrumbs":2,"title":2},"120":{"body":13,"breadcrumbs":4,"title":2},"121":{"body":4,"breadcrumbs":3,"title":1},"122":{"body":13,"breadcrumbs":4,"title":2},"123":{"body":6,"breadcrumbs":4,"title":2},"124":{"body":27,"breadcrumbs":3,"title":1},"125":{"body":5,"breadcrumbs":3,"title":1},"126":{"body":1,"breadcrumbs":3,"title":1},"127":{"body":6,"breadcrumbs":4,"title":2},"128":{"body":4,"breadcrumbs":3,"title":1},"129":{"body":6,"breadcrumbs":4,"title":2},"13":{"body":13,"breadcrumbs":3,"title":3},"130":{"body":4,"breadcrumbs":3,"title":1},"131":{"body":6,"breadcrumbs":4,"title":2},"132":{"body":5,"breadcrumbs":4,"title":2},"133":{"body":20,"breadcrumbs":3,"title":1},"134":{"body":5,"breadcrumbs":4,"title":2},"135":{"body":1,"breadcrumbs":3,"title":1},"136":{"body":67,"breadcrumbs":4,"title":2},"137":{"body":15,"breadcrumbs":3,"title":1},"138":{"body":6,"breadcrumbs":4,"title":2},"139":{"body":1,"breadcrumbs":3,"title":1},"14":{"body":87,"breadcrumbs":2,"title":2},"140":{"body":5,"breadcrumbs":3,"title":1},"141":{"body":10,"breadcrumbs":4,"title":2},"142":{"body":1,"breadcrumbs":3,"title":1},"143":{"body":5,"breadcrumbs":3,"title":1},"144":{"body":6,"breadcrumbs":4,"title":2},"145":{"body":1,"breadcrumbs":3,"title":1},"146":{"body":6,"breadcrumbs":3,"title":1},"147":{"body":7,"breadcrumbs":4,"title":2},"148":{"body":1,"breadcrumbs":3,"title":1},"149":{"body":6,"breadcrumbs":3,"title":1},"15":{"body":11,"breadcrumbs":2,"title":2},"16":{"body":13,"breadcrumbs":3,"title":3},"17":{"body":0,"breadcrumbs":2,"title":2},"18":{"body":4,"breadcrumbs":1,"title":1},"19":{"body":23,"breadcrumbs":2,"title":2},"2":{"body":2,"breadcrumbs":3,"title":3},"20":{"body":69,"breadcrumbs":2,"title":2},"21":{"body":0,"breadcrumbs":1,"title":1},"22":{"body":91,"breadcrumbs":2,"title":2},"23":{"body":39,"breadcrumbs":2,"title":2},"24":{"body":77,"breadcrumbs":2,"title":2},"25":{"body":16,"breadcrumbs":2,"title":2},"26":{"body":102,"breadcrumbs":6,"title":6},"27":{"body":24,"breadcrumbs":2,"title":2},"28":{"body":33,"breadcrumbs":3,"title":3},"29":{"body":9,"breadcrumbs":2,"title":2},"3":{"body":1,"breadcrumbs":3,"title":3},"30":{"body":9,"breadcrumbs":3,"title":3},"31":{"body":15,"breadcrumbs":3,"title":3},"32":{"body":2,"breadcrumbs":1,"title":1},"33":{"body":6,"breadcrumbs":2,"title":1},"34":{"body":2,"breadcrumbs":2,"title":1},"35":{"body":10,"breadcrumbs":2,"title":1},"36":{"body":145,"breadcrumbs":2,"title":1},"37":{"body":5,"breadcrumbs":2,"title":1},"38":{"body":5,"breadcrumbs":4,"title":2},"39":{"body":3,"breadcrumbs":3,"title":1},"4":{"body":2,"breadcrumbs":1,"title":1},"40":{"body":10,"breadcrumbs":3,"title":1},"41":{"body":123,"breadcrumbs":3,"title":1},"42":{"body":22,"breadcrumbs":3,"title":1},"43":{"body":5,"breadcrumbs":4,"title":2},"44":{"body":3,"breadcrumbs":3,"title":1},"45":{"body":10,"breadcrumbs":3,"title":1},"46":{"body":9,"breadcrumbs":3,"title":1},"47":{"body":12,"breadcrumbs":3,"title":1},"48":{"body":10,"breadcrumbs":4,"title":2},"49":{"body":3,"breadcrumbs":3,"title":1},"5":{"body":0,"breadcrumbs":2,"title":2},"50":{"body":10,"breadcrumbs":3,"title":1},"51":{"body":9,"breadcrumbs":3,"title":1},"52":{"body":14,"breadcrumbs":3,"title":1},"53":{"body":13,"breadcrumbs":4,"title":2},"54":{"body":3,"breadcrumbs":3,"title":1},"55":{"body":10,"breadcrumbs":3,"title":1},"56":{"body":9,"breadcrumbs":3,"title":1},"57":{"body":12,"breadcrumbs":3,"title":1},"58":{"body":11,"breadcrumbs":4,"title":2},"59":{"body":3,"breadcrumbs":3,"title":1},"6":{"body":11,"breadcrumbs":1,"title":1},"60":{"body":10,"breadcrumbs":3,"title":1},"61":{"body":25,"breadcrumbs":3,"title":1},"62":{"body":13,"breadcrumbs":3,"title":1},"63":{"body":14,"breadcrumbs":4,"title":2},"64":{"body":5,"breadcrumbs":3,"title":1},"65":{"body":18,"breadcrumbs":3,"title":1},"66":{"body":37,"breadcrumbs":3,"title":1},"67":{"body":13,"breadcrumbs":3,"title":1},"68":{"body":6,"breadcrumbs":3,"title":1},"69":{"body":3,"breadcrumbs":3,"title":1},"7":{"body":15,"breadcrumbs":1,"title":1},"70":{"body":10,"breadcrumbs":3,"title":1},"71":{"body":21,"breadcrumbs":3,"title":1},"72":{"body":5,"breadcrumbs":3,"title":1},"73":{"body":7,"breadcrumbs":4,"title":2},"74":{"body":3,"breadcrumbs":3,"title":1},"75":{"body":10,"breadcrumbs":3,"title":1},"76":{"body":14,"breadcrumbs":3,"title":1},"77":{"body":12,"breadcrumbs":3,"title":1},"78":{"body":11,"breadcrumbs":4,"title":2},"79":{"body":3,"breadcrumbs":3,"title":1},"8":{"body":0,"breadcrumbs":2,"title":2},"80":{"body":10,"breadcrumbs":3,"title":1},"81":{"body":14,"breadcrumbs":3,"title":1},"82":{"body":12,"breadcrumbs":3,"title":1},"83":{"body":7,"breadcrumbs":4,"title":2},"84":{"body":3,"breadcrumbs":3,"title":1},"85":{"body":10,"breadcrumbs":3,"title":1},"86":{"body":14,"breadcrumbs":3,"title":1},"87":{"body":14,"breadcrumbs":3,"title":1},"88":{"body":6,"breadcrumbs":4,"title":2},"89":{"body":4,"breadcrumbs":3,"title":1},"9":{"body":126,"breadcrumbs":6,"title":6},"90":{"body":32,"breadcrumbs":3,"title":1},"91":{"body":56,"breadcrumbs":3,"title":1},"92":{"body":5,"breadcrumbs":3,"title":1},"93":{"body":18,"breadcrumbs":3,"title":1},"94":{"body":8,"breadcrumbs":4,"title":2},"95":{"body":3,"breadcrumbs":3,"title":1},"96":{"body":10,"breadcrumbs":3,"title":1},"97":{"body":14,"breadcrumbs":3,"title":1},"98":{"body":14,"breadcrumbs":3,"title":1},"99":{"body":6,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"Join the chat at https://gitter.im/bayard-search/bayard License: MIT Bayard is a full-text search and indexing server written in Rust built on top of Tantivy that implements The Raft Consensus Algorithm ( raft-rs ) and The gRPC ( grpc-rs ). Achieves consensus across all the nodes, ensures every change made to the system is made to a quorum of nodes. Bayard makes easy for programmers to develop search applications with advanced features and high availability.","breadcrumbs":"Bayard","id":"0","title":"Bayard"},"1":{"body":"Full-text search/indexing Index replication Bringing up a cluster Command line interface is available","breadcrumbs":"Features","id":"1","title":"Features"},"10":{"body":"You can confirm current schema with the following command: $ ./bin/bayard schema | jq . You'll see the result in JSON format. The result of the above command is: [ { \"name\": \"id\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"basic\", \"tokenizer\": \"raw\" }, \"stored\": true } }, { \"name\": \"url\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"freq\", \"tokenizer\": \"default\" }, \"stored\": true } }, { \"name\": \"name\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"description\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"popularity\", \"type\": \"u64\", \"options\": { \"indexed\": true, \"fast\": \"single\", \"stored\": true } }, { \"name\": \"category\", \"type\": \"hierarchical_facet\" }, { \"name\": \"timestamp\", \"type\": \"date\", \"options\": { \"indexed\": true, \"fast\": \"single\", \"stored\": true } }\n]","breadcrumbs":"Getting schema","id":"10","title":"Getting schema"},"100":{"body":"bayard schedule [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"100","title":"USAGE"},"101":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"101","title":"FLAGS"},"102":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-c, --commit Schedule for automatic commit in a cron-like format. If not specified, use default schedule. [default: 0/10 * * * * * *]\n-m, --merge Schedule for automatic merge in a cron-like format. If not specified, use default schedule. [default: 0 0 2 * * * *]","breadcrumbs":"Reference » bayard » OPTIONS","id":"102","title":"OPTIONS"},"103":{"body":"The scheduling format is as follows: sec min hour day-of-month month day-of-week year\n* * * * * * *","breadcrumbs":"Reference » bayard » SCHEDULE FORMAT","id":"103","title":"SCHEDULE FORMAT"},"104":{"body":"To start job scheduler with default options: $ ./bin/bayard schedule To start job scheduler with options: $ ./bin/bayard schedule --commit=\"0/10 * * * * * *\" --merge=\"0 0 2 * * * *\"","breadcrumbs":"Reference » bayard » EXAMPLES","id":"104","title":"EXAMPLES"},"105":{"body":"The bayard gateway CLI starts a gateway for access the server over HTTP.","breadcrumbs":"Reference » bayard » bayard gateway","id":"105","title":"bayard gateway"},"106":{"body":"bayard gateway [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"106","title":"USAGE"},"107":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"107","title":"FLAGS"},"108":{"body":"-H, --host Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]\n-P, --port Port number. This port is used for communication via HTTP. If not specified, use the default port. [default: 8000]\n-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"108","title":"OPTIONS"},"109":{"body":"To start gateway with default options: $ ./bin/bayard gateway To start gateway with options: $ ./bin/bayard gateway --host=localhost --port=8080 --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"109","title":"EXAMPLES"},"11":{"body":"You can index document with the following command: $ ./bin/bayard put --id=1 --file=./examples/doc_1.json | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Indexing document","id":"11","title":"Indexing document"},"110":{"body":"The REST API can be used by starting the gateway with the “bayard gateway” CLI. See the next page for details on bayard gateway: bayard gateway","breadcrumbs":"Reference » REST API","id":"110","title":"REST API"},"111":{"body":"Probe API probes the server.","breadcrumbs":"Reference » APIs » Probe API","id":"111","title":"Probe API"},"112":{"body":"GET /probe","breadcrumbs":"Reference » APIs » Request","id":"112","title":"Request"},"113":{"body":"To probe a server: $ curl -X GET 'http://localhost:8000/probe'","breadcrumbs":"Reference » APIs » Examples","id":"113","title":"Examples"},"114":{"body":"Peers API shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » APIs » Peers API","id":"114","title":"Peers API"},"115":{"body":"GET /peers","breadcrumbs":"Reference » APIs » Request","id":"115","title":"Request"},"116":{"body":"To show peers of the cluster: $ curl -X GET 'http://localhost:8000/peers'","breadcrumbs":"Reference » APIs » Examples","id":"116","title":"Examples"},"117":{"body":"Metrics API shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.","breadcrumbs":"Reference » APIs » Metrics API","id":"117","title":"Metrics API"},"118":{"body":"GET /metrics","breadcrumbs":"Reference » APIs » Request","id":"118","title":"Request"},"119":{"body":"To show metrics: $ curl -X GET 'http://localhost:8000/metrics'","breadcrumbs":"Reference » APIs » Examples","id":"119","title":"Examples"},"12":{"body":"You can get document with the following command: $ ./bin/bayard get --id=1 | jq . You'll see the result in JSON format. The result of the above command is: { \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"id\": [ \"1\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1132 ], \"url\": [ \"https://github.com/bayard-search/bayard\" ]\n}","breadcrumbs":"Getting document","id":"12","title":"Getting document"},"120":{"body":"Put API puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.","breadcrumbs":"Reference » APIs » Put API","id":"120","title":"Put API"},"121":{"body":"PUT /index/docs/\nPUT /index/docs","breadcrumbs":"Reference » APIs » Request","id":"121","title":"Request"},"122":{"body":" A unique value that identifies the document in the index. If specify an existing ID, the existing document in the index is overwritten.","breadcrumbs":"Reference » APIs » Path parameters","id":"122","title":"Path parameters"},"123":{"body":" Document(s) expressed in JSON or JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"123","title":"Request body"},"124":{"body":"To put a document: $ curl -X PUT \\ --header 'Content-Type: application/json' \\ --data-binary @./examples/doc_1.json \\ 'http://localhost:8000/index/docs/1' To put documents in bulk: $ curl -X PUT \\ --header 'Content-Type: application/json' \\ --data-binary @./examples/bulk_put.jsonl \\ 'http://localhost:8000/index/docs'","breadcrumbs":"Reference » APIs » Example","id":"124","title":"Example"},"125":{"body":"Get API gets a document with the specified ID.","breadcrumbs":"Reference » APIs » Get API","id":"125","title":"Get API"},"126":{"body":"GET /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"126","title":"Request"},"127":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"127","title":"Path parameters"},"128":{"body":"To get a document: $ curl -X GET 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"128","title":"Examples"},"129":{"body":"Delete API deletes a document with the specified ID.","breadcrumbs":"Reference » APIs » Delete API","id":"129","title":"Delete API"},"13":{"body":"You can index documents in bulk with the following command: $ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Indexing documents in bulk","id":"13","title":"Indexing documents in bulk"},"130":{"body":"DELETE /index/docs/\nDELETE /index/docs","breadcrumbs":"Reference » APIs » Request","id":"130","title":"Request"},"131":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"131","title":"Path parameters"},"132":{"body":" Document(s) expressed in JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"132","title":"Request body"},"133":{"body":"To delete a document: $ curl -X DELETE 'http://localhost:8000/index/docs/1' To delete documents in bulk: $ curl -X DELETE \\ --header 'Content-Type: application/json' \\ --data-binary @./examples/bulk_delete.jsonl \\ 'http://localhost:8000/index/docs'","breadcrumbs":"Reference » APIs » Examples","id":"133","title":"Examples"},"134":{"body":"Search API searches documents from the index.","breadcrumbs":"Reference » APIs » Search API","id":"134","title":"Search API"},"135":{"body":"GET /index/search","breadcrumbs":"Reference » APIs » Request","id":"135","title":"Request"},"136":{"body":"from Start position of fetching results. If not specified, use default value. [default: 0] limit Limitation of amount that document to be returned. If not specified, use default value. [default: 10] exclude_count A flag indicating whether or not to exclude hit count in the search results. If not specified, use default value. [default: true] exclude_docs A flag indicating whether or not to exclude hit documents in the search results. If not specified, use default value. [default: true] query Query string to search the index. facet_field Hierarchical facet field name. facet_prefix Hierarchical facet field value prefix.","breadcrumbs":"Reference » APIs » Query parameters","id":"136","title":"Query parameters"},"137":{"body":"To search documents from the index: $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&exclude_count' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&exclude_docs' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&facet_field=category&facet_prefix=/language&facet_prefix=/category/search'","breadcrumbs":"Reference » APIs » Example","id":"137","title":"Example"},"138":{"body":"Commit API commits updates made to the index.","breadcrumbs":"Reference » APIs » Commit API","id":"138","title":"Commit API"},"139":{"body":"GET /index/commit","breadcrumbs":"Reference » APIs » Request","id":"139","title":"Request"},"14":{"body":"You can search documents with the following command: $ ./bin/bayard search --facet-field=category --facet-prefix=/category/search --facet-prefix=/language description:rust | jq . You'll see the result in JSON format. The result of the above command is: { \"count\": 2, \"docs\": [ { \"fields\": { \"category\": [ \"/category/search/library\", \"/language/rust\" ], \"description\": [ \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\" ], \"id\": [ \"8\" ], \"name\": [ \"Tantivy\" ], \"popularity\": [ 3100 ], \"url\": [ \"https://github.com/tantivy-search/tantivy\" ] }, \"score\": 1.5722498 }, { \"fields\": { \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"id\": [ \"1\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1132 ], \"url\": [ \"https://github.com/bayard-search/bayard\" ] }, \"score\": 1.5331805 } ], \"facet\": { \"category\": { \"/category/search/server\": 1, \"/category/search/library\": 1, \"/language/rust\": 2 } }\n}","breadcrumbs":"Searching documents","id":"14","title":"Searching documents"},"140":{"body":"To commit an index: $ curl -X GET 'http://localhost:8000/index/commit'","breadcrumbs":"Reference » APIs » Example","id":"140","title":"Example"},"141":{"body":"Rollback API rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » APIs » Rollback API","id":"141","title":"Rollback API"},"142":{"body":"GET /index/rollback","breadcrumbs":"Reference » APIs » Request","id":"142","title":"Request"},"143":{"body":"To rollback an index: $ curl -X GET 'http://localhost:8000/index/rollback'","breadcrumbs":"Reference » APIs » Examples","id":"143","title":"Examples"},"144":{"body":"Merge API merges fragmented segments in the index.","breadcrumbs":"Reference » APIs » Merge API","id":"144","title":"Merge API"},"145":{"body":"GET /index/merge","breadcrumbs":"Reference » APIs » Request","id":"145","title":"Request"},"146":{"body":"To merge segments in the index: $ curl -X GET 'http://localhost:8000/index/merge'","breadcrumbs":"Reference » APIs » Examples","id":"146","title":"Examples"},"147":{"body":"Schema API shows the index schema that the server applied.","breadcrumbs":"Reference » APIs » Schema API","id":"147","title":"Schema API"},"148":{"body":"GET /index/schema","breadcrumbs":"Reference » APIs » Request","id":"148","title":"Request"},"149":{"body":"To show the index schema: $ curl -X GET 'http://localhost:8000/index/schema'","breadcrumbs":"Reference » APIs » Examples","id":"149","title":"Examples"},"15":{"body":"You can delete document with the following command: $ ./bin/bayard delete --id=1 | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Deleting document","id":"15","title":"Deleting document"},"16":{"body":"You can delete documents in bulk with the following command: $ ./bin/bayard delete --bulk --file=./examples/bulk_delete.jsonl | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Deleting documents in bulk","id":"16","title":"Deleting documents in bulk"},"17":{"body":"","breadcrumbs":"Designing schema","id":"17","title":"Designing schema"},"18":{"body":"Schema is a collection of field entries.","breadcrumbs":"Schema","id":"18","title":"Schema"},"19":{"body":"A field entry represents a field and its configuration. name A field name. type A field type. See Field type section. options Options describing how the field should be indexed. See Options section.","breadcrumbs":"Field entry","id":"19","title":"Field entry"},"2":{"body":"https://github.com/bayard-search/bayard","breadcrumbs":"Source code repository","id":"2","title":"Source code repository"},"20":{"body":"A field type describes the type of a field as well as how it should be handled. \"text\" String field type configuration. It can specify text options . \"u64\" Unsigned 64-bits integers field type configuration. It can specify numeric options . \"i64\" Signed 64-bits integers 64 field type configuration. It can specify numeric options . \"f64\" 64-bits float 64 field type configuration. It can specify numeric options . \"date\" Signed 64-bits Date 64 field type configuration. It can specify numeric options . \"hierarchical_facet\" Hierarchical Facet. \"bytes\" Bytes. (one per document)","breadcrumbs":"Field type","id":"20","title":"Field type"},"21":{"body":"","breadcrumbs":"Options","id":"21","title":"Options"},"22":{"body":"Configuration defining indexing for a text field. It defines the amount of information that should be stored about the presence of a term in a document. Essentially, should be store the term frequency and/or the positions, the name of the tokenizer that should be used to process the field. indexing record \"basic\" Records only the document IDs. \"freq\" Records the document ids as well as the term frequency. The term frequency can help giving better scoring of the documents. \"position\" Records the document id, the term frequency and the positions of the occurences in the document. Positions are required to run phrase queries. tokenizer \"default\" Chops the text on according to whitespace and punctuation, removes tokens that are too long, and lowercases tokens. \"raw\" Does not process nor tokenize the text. \"en_stem\" Like default, but also applies stemming on the resulting tokens. Stemming can improve the recall of your search engine. stored true Text is to be stored. false Text is not to be stored.","breadcrumbs":"Text options","id":"22","title":"Text options"},"23":{"body":"Configuration defining indexing for a numeric field. indexed true Value is to be indexed. false Value is not to be indexed. stored true Value is to be stored. false Value is not to be stored. fast: \"single\" The document must have exactly one value associated to the document. \"multi\" The document can have any number of values associated to the document. This is more memory and CPU expensive than the SingleValue solution.","breadcrumbs":"Numeric options","id":"23","title":"Numeric options"},"24":{"body":"Here is a sample schema: [ { \"name\": \"id\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"basic\", \"tokenizer\": \"raw\" }, \"stored\": true } }, { \"name\": \"url\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"freq\", \"tokenizer\": \"default\" }, \"stored\": true } }, { \"name\": \"name\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"description\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"popularity\", \"type\": \"u64\", \"options\": { \"indexed\": true, \"stored\": true, \"fast\": \"single\" } }, { \"name\": \"category\", \"type\": \"hierarchical_facet\" }, { \"name\": \"timestamp\", \"type\": \"date\", \"options\": { \"indexed\": true, \"stored\": true, \"fast\": \"single\" } }\n]","breadcrumbs":"Example schema","id":"24","title":"Example schema"},"25":{"body":"Bayard supports booting in cluster mode by itself. No external software is required, and you can easily bring up a cluster by adding a command flags.","breadcrumbs":"Cluster mode","id":"25","title":"Cluster mode"},"26":{"body":"Running in standalone is not fault tolerant. If you need to improve fault tolerance, start servers in cluster mode. You can start servers in cluster mode with the following command: $ ./bin/bayard serve \\ --id=1 \\ --host=0.0.0.0 \\ --port=5001 \\ --data-directory=./data/1 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id $ ./bin/bayard serve \\ --id=2 \\ --host=0.0.0.0 \\ --port=5002 \\ --peers=\"1=0.0.0.0:5001\" \\ --data-directory=./data/2 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id $ ./bin/bayard serve \\ --id=3 \\ --host=0.0.0.0 \\ --port=5003 \\ --peers=\"1=0.0.0.0:5001,2=0.0.0.0:5002\" \\ --data-directory=./data/3 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id The above commands run servers on the same host, so each server must listen on a different port. This would not be necessary if each server runs on a different host. Recommend 3 or more odd number of servers in the cluster to avoid split-brain. When deploying to a single host, if that host goes down due to hardware failure, all of the servers in the cluster will be stopped, so recommend deploying to a different host.","breadcrumbs":"Starting in cluster mode (3-node cluster)","id":"26","title":"Starting in cluster mode (3-node cluster)"},"27":{"body":"You can check the peers in the cluster with the following command: $ ./bin/bayard peers --servers localhost:5001 | jq . You'll see the result in JSON format. The result of the above command is: { \"1\": \"0.0.0.0:5001\", \"2\": \"0.0.0.0:5002\", \"3\": \"0.0.0.0:5003\"\n}","breadcrumbs":"Cluster peers","id":"27","title":"Cluster peers"},"28":{"body":"If one of the servers in a cluster goes down due to a hardware failure and raft logs and metadata is lost, that server cannot join the cluster again. If you want the server to join the cluster again, you must remove it from the cluster. The following command deletes the server with id=3 from the cluster: $ ./bin/bayard leave \\ --servers=127.0.0.1:5001 \\ --id=3","breadcrumbs":"Remove a server from a cluster","id":"28","title":"Remove a server from a cluster"},"29":{"body":"See the available Docker container image version at the following URL: https://hub.docker.com/r/bayardsearch/bayard/tags/","breadcrumbs":"Running on Docker","id":"29","title":"Running on Docker"},"3":{"body":"https://hub.docker.com/r/bayardsearch/bayard","breadcrumbs":"Docker container repository","id":"3","title":"Docker container repository"},"30":{"body":"You can pull the Docker container image with the following command: $ docker pull bayardsearch/bayard:latest","breadcrumbs":"Pulling Docker container","id":"30","title":"Pulling Docker container"},"31":{"body":"You can run the Docker container image with the following command: $ docker run --rm --name bayard \\ -p 5000:5000 \\ bayardsearch/bayard:latest serve","breadcrumbs":"Running Docker container","id":"31","title":"Running Docker container"},"32":{"body":"bayard APIs","breadcrumbs":"Reference","id":"32","title":"Reference"},"33":{"body":"The bayard CLI manages server, cluster and index.","breadcrumbs":"Reference » bayard","id":"33","title":"bayard"},"34":{"body":"bayard ","breadcrumbs":"Reference » USAGE","id":"34","title":"USAGE"},"35":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » FLAGS","id":"35","title":"FLAGS"},"36":{"body":"serve The `bayard serve` CLI starts the server.\nprobe The `bayard probe` CLI probes the server.\npeers The `bayard peers` CLI shows the peer addresses of the cluster that the specified server is joining.\nmetrics The `bayard metrics` CLI shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.\nleave The `bayard leave` CLI removes the server with the specified ID from the cluster that the specified server is joining.\nput The `bayard put` CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.\nget The `bayard get` CLI gets a document with the specified ID.\ndelete The `bayard delete` CLI deletes a document with the specified ID.\ncommit The `bayard commit` CLI commits updates made to the index.\nrollback The `bayard rollback` CLI rolls back any updates made to the index to the last committed state.\nmerge The `bayard merge` CLI merges fragmented segments in the index.\nsearch The `bayard search` CLI searches documents from the index.\nschema The `bayard schema` CLI shows the index schema that the server applied.\nschedule The `bayard schedule` CLI starts the job scheduler.\ngateway The `bayard gateway` CLI starts a gateway for access the server over HTTP.\nhelp Prints this message or the help of the given subcommand(s)","breadcrumbs":"Reference » SUBCOMMANDS","id":"36","title":"SUBCOMMANDS"},"37":{"body":"To print version information: $ ./bin/bayard -v","breadcrumbs":"Reference » EXAMPLES","id":"37","title":"EXAMPLES"},"38":{"body":"The bayard serve CLI starts the server.","breadcrumbs":"Reference » bayard » bayard serve","id":"38","title":"bayard serve"},"39":{"body":"bayard serve [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"39","title":"USAGE"},"4":{"body":"https://bayard-search.github.io/bayard/","breadcrumbs":"Documents","id":"4","title":"Documents"},"40":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"40","title":"FLAGS"},"41":{"body":"-i, --id Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default ID. [default: 1]\n-H, --host Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]\n-P, --port Port number. This port is used for communication via gRPC. If not specified, use the default port. [default: 5000]\n-p, --peers ... Server ID and addresses in an existing cluster separated by \",\". If specified, the server will join the cluster.\n-d, --data-directory Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory. [default: ./data]\n-s, --schema-file Schema file. Must specify An existing file name. If not specified, use the default schema file. [default: ./etc/schema.json]\n-u, --unique-key-field-name Unique key field name. Specify the field name to be treated as a unique key in the field defined in the schema. If not specified, use the default unique key field name. [default: id]","breadcrumbs":"Reference » bayard » OPTIONS","id":"41","title":"OPTIONS"},"42":{"body":"To start a server with default options: $ ./bin/bayard serve To start a server with options: $ ./bin/bayard serve \\ --id=1 \\ --host=0.0.0.0 \\ --port=5001 \\ --data-directory=./data/1 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id","breadcrumbs":"Reference » bayard » EXAMPLES","id":"42","title":"EXAMPLES"},"43":{"body":"The bayard probe CLI probes the server.","breadcrumbs":"Reference » bayard » bayard probe","id":"43","title":"bayard probe"},"44":{"body":"bayard probe [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"44","title":"USAGE"},"45":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"45","title":"FLAGS"},"46":{"body":"-s, --server Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"46","title":"OPTIONS"},"47":{"body":"To probe a server with default options: $ ./bin/bayard probe To probe a server with options: $ ./bin/bayard probe --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"47","title":"EXAMPLES"},"48":{"body":"The bayard peers CLI shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard peers","id":"48","title":"bayard peers"},"49":{"body":"bayard peers [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"49","title":"USAGE"},"5":{"body":"","breadcrumbs":"Building Bayard","id":"5","title":"Building Bayard"},"50":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"50","title":"FLAGS"},"51":{"body":"-s, --server Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"51","title":"OPTIONS"},"52":{"body":"To show peers of the cluster with default options: $ ./bin/bayard peers To show peers of the cluster with options: $ ./bin/bayard peers --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"52","title":"EXAMPLES"},"53":{"body":"The bayard metrics CLI shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.","breadcrumbs":"Reference » bayard » bayard metrics","id":"53","title":"bayard metrics"},"54":{"body":"bayard metrics [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"54","title":"USAGE"},"55":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"55","title":"FLAGS"},"56":{"body":"-s, --server IP:PORT Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"56","title":"OPTIONS"},"57":{"body":"To show metrics with default options: $ ./bin/bayard metrics To show metrics with options: $ ./bin/bayard metrics --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"57","title":"EXAMPLES"},"58":{"body":"The bayard leave CLI removes the server with the specified ID from the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard leave","id":"58","title":"bayard leave"},"59":{"body":"bayard leave [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"59","title":"USAGE"},"6":{"body":"The following products are required to build Bayrad: Rust >= 1.39.0 make >= 3.81 protoc >= 3.9.2","breadcrumbs":"Requirements","id":"6","title":"Requirements"},"60":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"60","title":"FLAGS"},"61":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-i, --id Node ID to be removed from the cluster that specified server is joining. [default: 1]","breadcrumbs":"Reference » bayard » OPTIONS","id":"61","title":"OPTIONS"},"62":{"body":"To remove a server with default options: $ ./bin/bayard leave To probe a server with options: $ ./bin/bayard leave --servers=127.0.0.1:5001 --id=3","breadcrumbs":"Reference » bayard » EXAMPLES","id":"62","title":"EXAMPLES"},"63":{"body":"The bayard put CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.","breadcrumbs":"Reference » bayard » bayard put","id":"63","title":"bayard put"},"64":{"body":"bayard put [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"64","title":"USAGE"},"65":{"body":"-b, --bulk A flag indicating whether or not to put documents in bulk.\n-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"65","title":"FLAGS"},"66":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-i, --id A unique value that identifies the document in the index. If specified, the existing document ID in the document is overwritten.\n-f, --file File path that document(s) expressed in JSON or JSONL format.","breadcrumbs":"Reference » bayard » OPTIONS","id":"66","title":"OPTIONS"},"67":{"body":"To put a document: $ ./bin/bayard put --id=1 --file=./examples/doc_1.json To put documents in bulk: $ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl","breadcrumbs":"Reference » bayard » EXAMPLES","id":"67","title":"EXAMPLES"},"68":{"body":"The bayard get CLI gets a document with the specified ID.","breadcrumbs":"Reference » bayard » bayard get","id":"68","title":"bayard get"},"69":{"body":"bayard get [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"69","title":"USAGE"},"7":{"body":"Build Bayard with the following command: $ make build When the build is successful, the binary file is output to the following directory: $ ls ./bin","breadcrumbs":"Build","id":"7","title":"Build"},"70":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"70","title":"FLAGS"},"71":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-i, --id A unique value that identifies the document in the index.","breadcrumbs":"Reference » bayard » OPTIONS","id":"71","title":"OPTIONS"},"72":{"body":"To get a document with default options: $ ./bin/bayard get --id=1","breadcrumbs":"Reference » bayard » EXAMPLES","id":"72","title":"EXAMPLES"},"73":{"body":"The bayard commit CLI commits updates made to the index.","breadcrumbs":"Reference » bayard » bayard commit","id":"73","title":"bayard commit"},"74":{"body":"bayard commit [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"74","title":"USAGE"},"75":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"75","title":"FLAGS"},"76":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"76","title":"OPTIONS"},"77":{"body":"To commit an index with default options: $ ./bin/bayard commit To commit an index with options: $ ./bin/bayard commit --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"77","title":"EXAMPLES"},"78":{"body":"The bayard rollback CLI rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » bayard » bayard rollback","id":"78","title":"bayard rollback"},"79":{"body":"bayard rollback [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"79","title":"USAGE"},"8":{"body":"","breadcrumbs":"Getting started","id":"8","title":"Getting started"},"80":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"80","title":"FLAGS"},"81":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"81","title":"OPTIONS"},"82":{"body":"To rollback an index with default options: $ ./bin/bayard rollback To rollback an index with options: $ ./bin/bayard rollback --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"82","title":"EXAMPLES"},"83":{"body":"The bayard merge CLI merges fragmented segments in the index.","breadcrumbs":"Reference » bayard » bayard merge","id":"83","title":"bayard merge"},"84":{"body":"bayard merge [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"84","title":"USAGE"},"85":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"85","title":"FLAGS"},"86":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"86","title":"OPTIONS"},"87":{"body":"To merge segments in the index with default options: $ ./bin/bayard merge To merge segments in the index with options: $ ./bin/bayard merge --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"87","title":"EXAMPLES"},"88":{"body":"The bayard search CLI searches documents from the index.","breadcrumbs":"Reference » bayard » bayard search","id":"88","title":"bayard search"},"89":{"body":"bayard search [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"89","title":"USAGE"},"9":{"body":"Running node in standalone mode is easy. You can start server with the following command: $ ./bin/bayard serve You'll see a startup message like following: [2019-11-27T00:30:45Z INFO bayard::server::server src/server/server.rs:119] listening on 0.0.0.0:5000\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:723] became follower at term 0\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:295] newRaft [peers: [1], term: 0, commit: 0, applied: 0, last_index: 0, last_term: 0]\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:723] became follower at term 1 [...] [2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:1094] is starting a new election at term 1\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:743] became candidate at term 2\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:858] received MsgRequestVoteResponse from 1 at term 2\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:793] became leader at term 2","breadcrumbs":"Starting in standalone mode (Single node cluster)","id":"9","title":"Starting in standalone mode (Single node cluster)"},"90":{"body":"-c, --exclude-count A flag indicating whether or not to exclude hit count in the search results.\n-d, --exclude-docs A flag indicating whether or not to exclude hit documents in the search results\n-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"90","title":"FLAGS"},"91":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-f, --from Start position of fetching results. If not specified, use default value. [default: 0]\n-l, --limit Limitation of amount that document to be returned. If not specified, use default value. [default: 10]\n-F, --facet-field Hierarchical facet field name. [default: ]\n-V, --facet-prefix ... Hierarchical facet field value prefix.","breadcrumbs":"Reference » bayard » OPTIONS","id":"91","title":"OPTIONS"},"92":{"body":" Query string to search the index.","breadcrumbs":"Reference » bayard » ARGS","id":"92","title":"ARGS"},"93":{"body":"To search documents from the index with default options: $ ./bin/bayard search text:\"rust\" To search documents from the index with options: $ ./bin/bayard search --servers=127.0.0.1:5001 --from=10 --limit=20 text:\"rust\"","breadcrumbs":"Reference » bayard » EXAMPLES","id":"93","title":"EXAMPLES"},"94":{"body":"The bayard schema CLI shows the index schema that the server applied.","breadcrumbs":"Reference » bayard » bayard schema","id":"94","title":"bayard schema"},"95":{"body":"bayard schema [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"95","title":"USAGE"},"96":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"96","title":"FLAGS"},"97":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"97","title":"OPTIONS"},"98":{"body":"To show the index schema with default options: $ ./bin/bayard schema To show the index schema with options: $ ./bin/bayard schema --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"98","title":"EXAMPLES"},"99":{"body":"The bayard schedule CLI starts the job scheduler.","breadcrumbs":"Reference » bayard » bayard schedule","id":"99","title":"bayard schedule"}},"length":150,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"3":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{"9":{"4":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"5":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"8":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"136":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.0}}},"1":{".":{"3":{"9":{".":{"0":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"1":{"8":{"0":{"5":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"4":{"9":{"8":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}},"1":{"3":{"2":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":2.8284271247461903}}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"0":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"27":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":2.0}},"e":{"c":{"c":{"6":{"2":{"9":{"9":{"d":{"b":{"9":{"df":0,"docs":{},"e":{"c":{"8":{"2":{"3":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":1,"docs":{"9":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"3":{"0":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":2.0}}}},"8":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"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":5,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"3":{".":{"8":{"1":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}},"5":{"0":{"0":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"20":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"36":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"114":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":1,"docs":{"25":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"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":{"0":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"p":{"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":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"147":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":40,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":3.872983346207417},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":26,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"7":{"tf":1.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"20":{"tf":2.0}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":6,"docs":{"124":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"16":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"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":{"14":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"102":{"tf":1.0},"90":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":3.872983346207417},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"/":{"1":{"0":{"df":1,"docs":{"104":{"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":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":2.449489742783178},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"136":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"41":{"tf":3.4641016151377544},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"91":{"tf":2.6457513110645907},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"28":{"tf":1.0},"36":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"41":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"i":{"d":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"90":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}},"df":36,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"36":{"tf":2.23606797749979},"4":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"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":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"90":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"f":{"6":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"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":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}},"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":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":4,"docs":{"136":{"tf":1.4142135623730951},"14":{"tf":2.0},"20":{"tf":1.0},"91":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"66":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.6457513110645907},"20":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"=":{".":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"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":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"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":{}},"df":3,"docs":{"41":{"tf":2.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"136":{"tf":1.4142135623730951},"25":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"36":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":2.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"=":{"1":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0},"36":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"41":{"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":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}}}},"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":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"108":{"tf":2.0},"26":{"tf":2.23606797749979},"41":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"124":{"tf":1.0},"133":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"?":{"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"=":{"0":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"0":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"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":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"&":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":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":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"116":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"105":{"tf":1.0},"108":{"tf":1.0},"36":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"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":{},"i":{"df":0,"docs":{},"m":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"0":{"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":{"b":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"20":{"tf":1.0}}},"df":0,"docs":{}},"d":{"=":{"1":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"62":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":17,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"36":{"tf":2.23606797749979},"41":{"tf":2.6457513110645907},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"22":{"tf":1.0},"26":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"121":{"tf":1.0},"130":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"41":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":2.8284271247461903}},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"36":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"28":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"q":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"27":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"26":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"2":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"0":{"0":{"1":{"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":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"41":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"a":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"138":{"tf":1.0},"141":{"tf":1.0},"36":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"36":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"36":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":1.0},"57":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"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":1,"docs":{"9":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"10":{"tf":2.8284271247461903},"108":{"tf":1.0},"12":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"31":{"tf":1.0},"41":{"tf":2.449489742783178},"91":{"tf":1.0}}}}},"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":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":4,"docs":{"120":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":48,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.449489742783178},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"36":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"66":{"tf":1.0}}}}},"df":3,"docs":{"108":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"27":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":2.0},"9":{"tf":1.0}},"s":{"=":{"\"":{"1":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"1":{",":{"2":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"20":{"tf":1.0}}}},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"1":{"df":2,"docs":{"26":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"108":{"tf":2.23606797749979},"26":{"tf":1.0},"41":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"136":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"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":{"14":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"47":{"tf":2.0},"62":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":10,"docs":{"11":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"124":{"tf":2.0},"13":{"tf":1.0},"36":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.7320508075688772},"22":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.0}}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"d":{"df":3,"docs":{"10":{"tf":2.0},"22":{"tf":2.0},"24":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"36":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"36":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":13,"docs":{"10":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":14,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"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":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"14":{"tf":2.23606797749979},"22":{"tf":1.0},"36":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"103":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"9":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"36":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"0":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"33":{"tf":1.0},"36":{"tf":3.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":8,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"36":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"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":25,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.0},"20":{"tf":2.23606797749979},"36":{"tf":2.8284271247461903},"41":{"tf":3.3166247903554},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"9":{"df":1,"docs":{"9":{"tf":1.0}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"136":{"tf":1.0},"26":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.449489742783178},"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"136":{"tf":1.0},"20":{"tf":1.0},"92":{"tf":1.0}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"36":{"tf":1.0}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"x":{"df":0,"docs":{},"t":{":":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"24":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":2.0},"22":{"tf":2.449489742783178},"24":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"p":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"136":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.8284271247461903}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.6457513110645907},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"24":{"tf":2.6457513110645907}}}}}},"u":{"6":{"4":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"26":{"tf":1.7320508075688772},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"41":{"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":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"36":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":14,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"110":{"tf":1.0},"136":{"tf":2.0},"22":{"tf":1.0},"41":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"66":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}}}}},"x":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"3":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{"9":{"4":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"5":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"8":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"136":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.0}}},"1":{".":{"3":{"9":{".":{"0":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"1":{"8":{"0":{"5":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"4":{"9":{"8":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}},"1":{"3":{"2":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":2.8284271247461903}}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"0":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"27":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":2.0}},"e":{"c":{"c":{"6":{"2":{"9":{"9":{"d":{"b":{"9":{"df":0,"docs":{},"e":{"c":{"8":{"2":{"3":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":1,"docs":{"9":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"3":{"0":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":2.0}}}},"8":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"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":5,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"3":{".":{"8":{"1":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}},"5":{"0":{"0":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"20":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"36":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"114":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":1,"docs":{"25":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"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":{"0":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":41,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"32":{"tf":1.0}}},"p":{"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":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"147":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":84,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":3.872983346207417},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":26,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"7":{"tf":1.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"20":{"tf":2.0}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":6,"docs":{"124":{"tf":1.0},"13":{"tf":2.0},"133":{"tf":1.0},"16":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"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":{"14":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"102":{"tf":1.0},"90":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":3.872983346207417},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":2.6457513110645907},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"/":{"1":{"0":{"df":1,"docs":{"104":{"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":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":2.0},"140":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":2.0},"73":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":2.449489742783178},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"136":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"41":{"tf":3.4641016151377544},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"91":{"tf":2.6457513110645907},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"15":{"tf":2.0},"16":{"tf":2.0},"28":{"tf":1.0},"36":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"41":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"i":{"d":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"90":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":2.0},"31":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}},"df":36,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"36":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"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":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"90":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"f":{"6":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"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":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}},"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":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":4,"docs":{"136":{"tf":1.4142135623730951},"14":{"tf":2.0},"20":{"tf":1.0},"91":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"66":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.8284271247461903},"20":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"=":{".":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"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":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"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":{}},"df":3,"docs":{"41":{"tf":2.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"25":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"36":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":2.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"=":{"1":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"105":{"tf":2.0},"106":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0},"36":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"41":{"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":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}}}},"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":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"108":{"tf":2.0},"26":{"tf":2.23606797749979},"41":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"124":{"tf":1.0},"133":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"?":{"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"=":{"0":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"0":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"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":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"&":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":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":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"116":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"105":{"tf":1.0},"108":{"tf":1.0},"36":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"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":{},"i":{"df":0,"docs":{},"m":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"0":{"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":{"b":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"20":{"tf":1.0}}},"df":0,"docs":{}},"d":{"=":{"1":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"62":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":17,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"36":{"tf":2.23606797749979},"41":{"tf":2.6457513110645907},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"22":{"tf":1.0},"26":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"121":{"tf":1.0},"130":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"41":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":2.8284271247461903}},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"36":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"28":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"q":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"27":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"26":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"2":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"0":{"0":{"1":{"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":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"41":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"a":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"138":{"tf":1.0},"141":{"tf":1.0},"36":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":2.0},"146":{"tf":1.0},"36":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"117":{"tf":2.23606797749979},"118":{"tf":1.0},"119":{"tf":1.0},"36":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"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":1,"docs":{"9":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"10":{"tf":2.8284271247461903},"108":{"tf":1.0},"12":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"31":{"tf":1.0},"41":{"tf":2.449489742783178},"91":{"tf":1.0}}}}},"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":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":4,"docs":{"120":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":48,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"36":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}},"df":3,"docs":{"108":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"27":{"tf":2.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":2.0},"9":{"tf":1.0}},"s":{"=":{"\"":{"1":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"1":{",":{"2":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"20":{"tf":1.0}}}},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"1":{"df":2,"docs":{"26":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"108":{"tf":2.23606797749979},"26":{"tf":1.0},"41":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"136":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"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":{"14":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":8,"docs":{"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.0},"47":{"tf":2.0},"62":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":10,"docs":{"11":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"124":{"tf":2.0},"13":{"tf":1.0},"36":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":2.0},"22":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.0}}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"d":{"df":3,"docs":{"10":{"tf":2.0},"22":{"tf":2.0},"24":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":118,"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.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"36":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"36":{"tf":1.7320508075688772},"99":{"tf":2.0}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":13,"docs":{"10":{"tf":2.0},"147":{"tf":2.0},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0},"98":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":14,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"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":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"14":{"tf":2.449489742783178},"22":{"tf":1.0},"36":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"103":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"9":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"36":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"0":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":3.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":8,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"36":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.0},"20":{"tf":2.23606797749979},"36":{"tf":2.8284271247461903},"41":{"tf":3.3166247903554},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"9":{"df":1,"docs":{"9":{"tf":1.0}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"136":{"tf":1.0},"26":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"91":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.449489742783178},"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"136":{"tf":1.0},"20":{"tf":1.0},"92":{"tf":1.0}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"36":{"tf":1.0}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"x":{"df":0,"docs":{},"t":{":":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"24":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":2.0},"22":{"tf":2.449489742783178},"24":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"p":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"136":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.8284271247461903}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.6457513110645907},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":3.0},"24":{"tf":2.6457513110645907}}}}}},"u":{"6":{"4":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"26":{"tf":1.7320508075688772},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"41":{"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":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"36":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":14,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"110":{"tf":1.0},"136":{"tf":2.0},"22":{"tf":1.0},"41":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"66":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}}}}},"x":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"title":{"root":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":12,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":17,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"117":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"111":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"10":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"134":{"tf":1.0},"14":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"38":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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/docs/searchindex.json b/docs/searchindex.json index 3f07924..b51eb33 100644 --- a/docs/searchindex.json +++ b/docs/searchindex.json @@ -1 +1 @@ -{"doc_urls":["overview.html#bayard","overview.html#features","overview.html#source-code-repository","overview.html#docker-container-repository","overview.html#documents","building_bayard.html#building-bayard","building_bayard.html#requirements","building_bayard.html#build","getting_started.html#getting-started","getting_started.html#starting-in-standalone-mode-single-node-cluster","getting_started.html#getting-schema","getting_started.html#indexing-document","getting_started.html#getting-document","getting_started.html#searching-documents","getting_started.html#deleting-document","designing_schema.html#designing-schema","designing_schema.html#schema","designing_schema.html#field-entry","designing_schema.html#field-type","designing_schema.html#options","designing_schema.html#text-options","designing_schema.html#numeric-options","designing_schema.html#example-schema","cluster_mode.html#cluster-mode","cluster_mode.html#starting-in-cluster-mode-3-node-cluster","cluster_mode.html#cluster-peers","cluster_mode.html#remove-a-server-from-a-cluster","running_on_docker.html#running-on-docker","running_on_docker.html#pulling-docker-container","running_on_docker.html#running-docker-container","reference.html#reference","reference/bayard.html#bayard","reference/bayard.html#usage","reference/bayard.html#flags","reference/bayard.html#subcommands","reference/bayard.html#examples","reference/bayard/serve.html#bayard-serve","reference/bayard/serve.html#usage","reference/bayard/serve.html#flags","reference/bayard/serve.html#options","reference/bayard/serve.html#examples","reference/bayard/probe.html#bayard-probe","reference/bayard/probe.html#usage","reference/bayard/probe.html#flags","reference/bayard/probe.html#options","reference/bayard/probe.html#examples","reference/bayard/peers.html#bayard-peers","reference/bayard/peers.html#usage","reference/bayard/peers.html#flags","reference/bayard/peers.html#options","reference/bayard/peers.html#examples","reference/bayard/metrics.html#bayard-metrics","reference/bayard/metrics.html#usage","reference/bayard/metrics.html#flags","reference/bayard/metrics.html#options","reference/bayard/metrics.html#examples","reference/bayard/leave.html#bayard-leave","reference/bayard/leave.html#usage","reference/bayard/leave.html#flags","reference/bayard/leave.html#options","reference/bayard/leave.html#examples","reference/bayard/put.html#bayard-put","reference/bayard/put.html#usage","reference/bayard/put.html#flags","reference/bayard/put.html#options","reference/bayard/put.html#args","reference/bayard/put.html#examples","reference/bayard/get.html#bayard-get","reference/bayard/get.html#usage","reference/bayard/get.html#flags","reference/bayard/get.html#options","reference/bayard/get.html#args","reference/bayard/get.html#examples","reference/bayard/commit.html#bayard-commit","reference/bayard/commit.html#usage","reference/bayard/commit.html#flags","reference/bayard/commit.html#options","reference/bayard/commit.html#examples","reference/bayard/rollback.html#bayard-rollback","reference/bayard/rollback.html#usage","reference/bayard/rollback.html#flags","reference/bayard/rollback.html#options","reference/bayard/rollback.html#examples","reference/bayard/merge.html#bayard-merge","reference/bayard/merge.html#usage","reference/bayard/merge.html#flags","reference/bayard/merge.html#options","reference/bayard/merge.html#examples","reference/bayard/search.html#bayard-search","reference/bayard/search.html#usage","reference/bayard/search.html#flags","reference/bayard/search.html#options","reference/bayard/search.html#args","reference/bayard/search.html#examples","reference/bayard/schema.html#bayard-schema","reference/bayard/schema.html#usage","reference/bayard/schema.html#flags","reference/bayard/schema.html#options","reference/bayard/schema.html#examples","reference/bayard/schedule.html#bayard-schedule","reference/bayard/schedule.html#usage","reference/bayard/schedule.html#flags","reference/bayard/schedule.html#options","reference/bayard/schedule.html#schedule-format","reference/bayard/schedule.html#examples","reference/bayard/gateway.html#bayard-gateway","reference/bayard/gateway.html#usage","reference/bayard/gateway.html#flags","reference/bayard/gateway.html#options","reference/bayard/gateway.html#examples","reference/apis.html#rest-api","reference/apis/probe.html#probe-api","reference/apis/probe.html#request","reference/apis/probe.html#examples","reference/apis/peers.html#peers-api","reference/apis/peers.html#request","reference/apis/peers.html#examples","reference/apis/metrics.html#metrics-api","reference/apis/metrics.html#request","reference/apis/metrics.html#examples","reference/apis/put.html#put-api","reference/apis/put.html#request","reference/apis/put.html#path-parameters","reference/apis/put.html#request-body","reference/apis/put.html#example","reference/apis/get.html#get-api","reference/apis/get.html#request","reference/apis/get.html#path-parameters","reference/apis/get.html#examples","reference/apis/delete.html#delete-api","reference/apis/delete.html#request","reference/apis/delete.html#path-parameters","reference/apis/delete.html#examples","reference/apis/search.html#search-api","reference/apis/search.html#request","reference/apis/search.html#query-parameters","reference/apis/search.html#example","reference/apis/commit.html#commit-api","reference/apis/commit.html#request","reference/apis/commit.html#example","reference/apis/rollback.html#rollback-api","reference/apis/rollback.html#request","reference/apis/rollback.html#examples","reference/apis/merge.html#merge-api","reference/apis/merge.html#request","reference/apis/merge.html#examples","reference/apis/schema.html#schema-api","reference/apis/schema.html#request","reference/apis/schema.html#examples"],"index":{"documentStore":{"docInfo":{"0":{"body":47,"breadcrumbs":1,"title":1},"1":{"body":12,"breadcrumbs":1,"title":1},"10":{"body":90,"breadcrumbs":2,"title":2},"100":{"body":3,"breadcrumbs":3,"title":1},"101":{"body":10,"breadcrumbs":3,"title":1},"102":{"body":44,"breadcrumbs":3,"title":1},"103":{"body":12,"breadcrumbs":4,"title":2},"104":{"body":17,"breadcrumbs":3,"title":1},"105":{"body":9,"breadcrumbs":4,"title":2},"106":{"body":3,"breadcrumbs":3,"title":1},"107":{"body":10,"breadcrumbs":3,"title":1},"108":{"body":46,"breadcrumbs":3,"title":1},"109":{"body":14,"breadcrumbs":3,"title":1},"11":{"body":334,"breadcrumbs":2,"title":2},"110":{"body":16,"breadcrumbs":3,"title":2},"111":{"body":4,"breadcrumbs":4,"title":2},"112":{"body":1,"breadcrumbs":3,"title":1},"113":{"body":5,"breadcrumbs":3,"title":1},"114":{"body":9,"breadcrumbs":4,"title":2},"115":{"body":1,"breadcrumbs":3,"title":1},"116":{"body":6,"breadcrumbs":3,"title":1},"117":{"body":12,"breadcrumbs":4,"title":2},"118":{"body":1,"breadcrumbs":3,"title":1},"119":{"body":5,"breadcrumbs":3,"title":1},"12":{"body":38,"breadcrumbs":2,"title":2},"120":{"body":13,"breadcrumbs":4,"title":2},"121":{"body":2,"breadcrumbs":3,"title":1},"122":{"body":13,"breadcrumbs":4,"title":2},"123":{"body":6,"breadcrumbs":4,"title":2},"124":{"body":24,"breadcrumbs":3,"title":1},"125":{"body":5,"breadcrumbs":3,"title":1},"126":{"body":1,"breadcrumbs":3,"title":1},"127":{"body":6,"breadcrumbs":4,"title":2},"128":{"body":4,"breadcrumbs":3,"title":1},"129":{"body":6,"breadcrumbs":4,"title":2},"13":{"body":87,"breadcrumbs":2,"title":2},"130":{"body":2,"breadcrumbs":3,"title":1},"131":{"body":6,"breadcrumbs":4,"title":2},"132":{"body":6,"breadcrumbs":3,"title":1},"133":{"body":5,"breadcrumbs":4,"title":2},"134":{"body":1,"breadcrumbs":3,"title":1},"135":{"body":67,"breadcrumbs":4,"title":2},"136":{"body":15,"breadcrumbs":3,"title":1},"137":{"body":6,"breadcrumbs":4,"title":2},"138":{"body":1,"breadcrumbs":3,"title":1},"139":{"body":5,"breadcrumbs":3,"title":1},"14":{"body":39,"breadcrumbs":2,"title":2},"140":{"body":10,"breadcrumbs":4,"title":2},"141":{"body":1,"breadcrumbs":3,"title":1},"142":{"body":5,"breadcrumbs":3,"title":1},"143":{"body":6,"breadcrumbs":4,"title":2},"144":{"body":1,"breadcrumbs":3,"title":1},"145":{"body":6,"breadcrumbs":3,"title":1},"146":{"body":7,"breadcrumbs":4,"title":2},"147":{"body":1,"breadcrumbs":3,"title":1},"148":{"body":6,"breadcrumbs":3,"title":1},"15":{"body":0,"breadcrumbs":2,"title":2},"16":{"body":4,"breadcrumbs":1,"title":1},"17":{"body":23,"breadcrumbs":2,"title":2},"18":{"body":69,"breadcrumbs":2,"title":2},"19":{"body":0,"breadcrumbs":1,"title":1},"2":{"body":2,"breadcrumbs":3,"title":3},"20":{"body":91,"breadcrumbs":2,"title":2},"21":{"body":39,"breadcrumbs":2,"title":2},"22":{"body":77,"breadcrumbs":2,"title":2},"23":{"body":16,"breadcrumbs":2,"title":2},"24":{"body":102,"breadcrumbs":6,"title":6},"25":{"body":24,"breadcrumbs":2,"title":2},"26":{"body":33,"breadcrumbs":3,"title":3},"27":{"body":9,"breadcrumbs":2,"title":2},"28":{"body":9,"breadcrumbs":3,"title":3},"29":{"body":15,"breadcrumbs":3,"title":3},"3":{"body":1,"breadcrumbs":3,"title":3},"30":{"body":2,"breadcrumbs":1,"title":1},"31":{"body":6,"breadcrumbs":2,"title":1},"32":{"body":2,"breadcrumbs":2,"title":1},"33":{"body":10,"breadcrumbs":2,"title":1},"34":{"body":145,"breadcrumbs":2,"title":1},"35":{"body":5,"breadcrumbs":2,"title":1},"36":{"body":5,"breadcrumbs":4,"title":2},"37":{"body":3,"breadcrumbs":3,"title":1},"38":{"body":10,"breadcrumbs":3,"title":1},"39":{"body":123,"breadcrumbs":3,"title":1},"4":{"body":2,"breadcrumbs":1,"title":1},"40":{"body":22,"breadcrumbs":3,"title":1},"41":{"body":5,"breadcrumbs":4,"title":2},"42":{"body":3,"breadcrumbs":3,"title":1},"43":{"body":10,"breadcrumbs":3,"title":1},"44":{"body":9,"breadcrumbs":3,"title":1},"45":{"body":12,"breadcrumbs":3,"title":1},"46":{"body":10,"breadcrumbs":4,"title":2},"47":{"body":3,"breadcrumbs":3,"title":1},"48":{"body":10,"breadcrumbs":3,"title":1},"49":{"body":9,"breadcrumbs":3,"title":1},"5":{"body":0,"breadcrumbs":2,"title":2},"50":{"body":14,"breadcrumbs":3,"title":1},"51":{"body":13,"breadcrumbs":4,"title":2},"52":{"body":3,"breadcrumbs":3,"title":1},"53":{"body":10,"breadcrumbs":3,"title":1},"54":{"body":9,"breadcrumbs":3,"title":1},"55":{"body":12,"breadcrumbs":3,"title":1},"56":{"body":11,"breadcrumbs":4,"title":2},"57":{"body":3,"breadcrumbs":3,"title":1},"58":{"body":10,"breadcrumbs":3,"title":1},"59":{"body":25,"breadcrumbs":3,"title":1},"6":{"body":11,"breadcrumbs":1,"title":1},"60":{"body":13,"breadcrumbs":3,"title":1},"61":{"body":14,"breadcrumbs":4,"title":2},"62":{"body":5,"breadcrumbs":3,"title":1},"63":{"body":10,"breadcrumbs":3,"title":1},"64":{"body":14,"breadcrumbs":3,"title":1},"65":{"body":19,"breadcrumbs":3,"title":1},"66":{"body":58,"breadcrumbs":3,"title":1},"67":{"body":6,"breadcrumbs":3,"title":1},"68":{"body":3,"breadcrumbs":3,"title":1},"69":{"body":10,"breadcrumbs":3,"title":1},"7":{"body":15,"breadcrumbs":1,"title":1},"70":{"body":14,"breadcrumbs":3,"title":1},"71":{"body":6,"breadcrumbs":3,"title":1},"72":{"body":10,"breadcrumbs":3,"title":1},"73":{"body":7,"breadcrumbs":4,"title":2},"74":{"body":3,"breadcrumbs":3,"title":1},"75":{"body":10,"breadcrumbs":3,"title":1},"76":{"body":14,"breadcrumbs":3,"title":1},"77":{"body":12,"breadcrumbs":3,"title":1},"78":{"body":11,"breadcrumbs":4,"title":2},"79":{"body":3,"breadcrumbs":3,"title":1},"8":{"body":0,"breadcrumbs":2,"title":2},"80":{"body":10,"breadcrumbs":3,"title":1},"81":{"body":14,"breadcrumbs":3,"title":1},"82":{"body":12,"breadcrumbs":3,"title":1},"83":{"body":7,"breadcrumbs":4,"title":2},"84":{"body":3,"breadcrumbs":3,"title":1},"85":{"body":10,"breadcrumbs":3,"title":1},"86":{"body":14,"breadcrumbs":3,"title":1},"87":{"body":14,"breadcrumbs":3,"title":1},"88":{"body":6,"breadcrumbs":4,"title":2},"89":{"body":4,"breadcrumbs":3,"title":1},"9":{"body":126,"breadcrumbs":6,"title":6},"90":{"body":32,"breadcrumbs":3,"title":1},"91":{"body":56,"breadcrumbs":3,"title":1},"92":{"body":5,"breadcrumbs":3,"title":1},"93":{"body":18,"breadcrumbs":3,"title":1},"94":{"body":8,"breadcrumbs":4,"title":2},"95":{"body":3,"breadcrumbs":3,"title":1},"96":{"body":10,"breadcrumbs":3,"title":1},"97":{"body":14,"breadcrumbs":3,"title":1},"98":{"body":14,"breadcrumbs":3,"title":1},"99":{"body":6,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"Join the chat at https://gitter.im/bayard-search/bayard License: MIT Bayard is a full-text search and indexing server written in Rust built on top of Tantivy that implements The Raft Consensus Algorithm ( raft-rs ) and The gRPC ( grpc-rs ). Achieves consensus across all the nodes, ensures every change made to the system is made to a quorum of nodes. Bayard makes easy for programmers to develop search applications with advanced features and high availability.","breadcrumbs":"Bayard","id":"0","title":"Bayard"},"1":{"body":"Full-text search/indexing Index replication Bringing up a cluster Command line interface is available","breadcrumbs":"Features","id":"1","title":"Features"},"10":{"body":"You can confirm current schema with the following command: $ ./bin/bayard schema | jq . You'll see the result in JSON format. The result of the above command is: [ { \"name\": \"id\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"basic\", \"tokenizer\": \"raw\" }, \"stored\": true } }, { \"name\": \"url\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"freq\", \"tokenizer\": \"default\" }, \"stored\": true } }, { \"name\": \"name\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"description\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"popularity\", \"type\": \"u64\", \"options\": { \"indexed\": true, \"fast\": \"single\", \"stored\": true } }, { \"name\": \"category\", \"type\": \"hierarchical_facet\" }, { \"name\": \"timestamp\", \"type\": \"date\", \"options\": { \"indexed\": true, \"fast\": \"single\", \"stored\": true } }\n]","breadcrumbs":"Getting schema","id":"10","title":"Getting schema"},"100":{"body":"bayard schedule [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"100","title":"USAGE"},"101":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"101","title":"FLAGS"},"102":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-c, --commit Schedule for automatic commit in a cron-like format. If not specified, use default schedule. [default: 0/10 * * * * * *]\n-m, --merge Schedule for automatic merge in a cron-like format. If not specified, use default schedule. [default: 0 0 2 * * * *]","breadcrumbs":"Reference » bayard » OPTIONS","id":"102","title":"OPTIONS"},"103":{"body":"The scheduling format is as follows: sec min hour day-of-month month day-of-week year\n* * * * * * *","breadcrumbs":"Reference » bayard » SCHEDULE FORMAT","id":"103","title":"SCHEDULE FORMAT"},"104":{"body":"To start job scheduler with default options: $ ./bin/bayard schedule To start job scheduler with options: $ ./bin/bayard schedule --commit=\"0/10 * * * * * *\" --merge=\"0 0 2 * * * *\"","breadcrumbs":"Reference » bayard » EXAMPLES","id":"104","title":"EXAMPLES"},"105":{"body":"The bayard gateway CLI starts a gateway for access the server over HTTP.","breadcrumbs":"Reference » bayard » bayard gateway","id":"105","title":"bayard gateway"},"106":{"body":"bayard gateway [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"106","title":"USAGE"},"107":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"107","title":"FLAGS"},"108":{"body":"-H, --host Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]\n-P, --port Port number. This port is used for communication via HTTP. If not specified, use the default port. [default: 8000]\n-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"108","title":"OPTIONS"},"109":{"body":"To start gateway with default options: $ ./bin/bayard gateway To start gateway with options: $ ./bin/bayard gateway --host=localhost --port=8080 --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"109","title":"EXAMPLES"},"11":{"body":"You can index documents with the following command: $ ./bin/bayard put 1 '{ \"url\": \"https://github.com/bayard-search/bayard\", \"name\": \"Bayard\", \"description\": \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\", \"popularity\": 1152, \"category\": [\"/category/search/server\", \"/language/rust\"], \"timestamp\": \"2019-12-19T10:41:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 2 '{ \"url\": \"https://lucene.apache.org/solr/\", \"name\": \"Apache Solr\", \"description\": \"Solr is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more.\", \"popularity\": 3135, \"category\": [\"/category/search/server\", \"/language/java\"], \"timestamp\": \"2019-12-19T14:08:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 3 '{ \"url\": \"https://www.elastic.co/products/elasticsearch\", \"name\": \"Elasticsearch\", \"description\": \"Elasticsearch is a distributed, open source search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured.\", \"popularity\": 46054, \"category\": [\"/category/search/server\", \"/language/java\"], \"timestamp\": \"2019-12-19T08:19:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 4 '{ \"url\": \"https://github.com/mosuka/blast\", \"name\": \"Blast\", \"description\": \"Blast is a full text search and indexing server, written in Go, built on top of Bleve.\", \"popularity\": 654, \"category\": [\"/category/search/server\", \"/language/go\"], \"timestamp\": \"2019-10-18T19:50:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 5 '{ \"url\": \"https://github.com/go-ego/riot\", \"name\": \"Riot\", \"description\": \"Riot is Go Open Source, Distributed, Simple and efficient full text search engine.\", \"popularity\": 4948, \"category\": [\"/category/search/server\", \"/language/go\"], \"timestamp\": \"2019-12-16T07:12:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 6 '{ \"url\": \"https://github.com/toshi-search/Toshi\", \"name\": \"Toshi\", \"description\": \"Toshi is meant to be a full-text search engine similar to Elasticsearch. Toshi strives to be to Elasticsearch what Tantivy is to Lucene.\", \"popularity\": 2448, \"category\": [\"/category/search/server\", \"/language/rust\"], \"timestamp\": \"2019-12-02T04:00:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 7 '{ \"url\": \"https://github.com/valeriansaliou/sonic\", \"name\": \"Sonic\", \"description\": \"Sonic is a fast, lightweight and schema-less search backend.\", \"popularity\": 7895, \"category\": [\"/category/search/server\", \"/language/rust\"], \"timestamp\": \"2019-12-10T23:13:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 8 '{ \"url\": \"https://github.com/tantivy-search/tantivy\", \"name\": \"Tantivy\", \"description\": \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\", \"popularity\": 3142, \"category\": [\"/category/search/library\", \"/language/rust\"], \"timestamp\": \"2019-12-19T10:07:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 9 '{ \"url\": \"https://lucene.apache.org/\", \"name\": \"Lucene\", \"description\": \"Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java.\", \"popularity\": 3135, \"category\": [\"/category/search/library\", \"/language/java\"], \"timestamp\": \"2019-12-19T14:08:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 10 '{ \"url\": \"https://blevesearch.com/\", \"name\": \"Bleve\", \"description\": \"Bleve is a modern text indexing library for go.\", \"popularity\": 6211, \"category\": [\"/category/search/library\", \"/language/go\"], \"timestamp\": \"2019-10-30T16:13:00+09:00\"\n}' | jq .\n$ ./bin/bayard put 11 '{ \"url\": \"https://bitbucket.org/mchaput/whoosh/wiki/Home\", \"name\": \"Whoosh\", \"description\": \"Whoosh is a fast, pure Python search engine library.\", \"popularity\": 0, \"category\": [\"/category/search/library\", \"/language/python\"], \"timestamp\": \"2019-10-08T05:30:26+09:00\"\n}' | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Indexing document","id":"11","title":"Indexing document"},"110":{"body":"The REST API can be used by starting the gateway with the “bayard gateway” CLI. See the next page for details on bayard gateway: bayard gateway","breadcrumbs":"Reference » REST API","id":"110","title":"REST API"},"111":{"body":"Probe API probes the server.","breadcrumbs":"Reference » APIs » Probe API","id":"111","title":"Probe API"},"112":{"body":"GET /probe","breadcrumbs":"Reference » APIs » Request","id":"112","title":"Request"},"113":{"body":"To probe a server: $ curl -X GET 'http://localhost:8000/probe'","breadcrumbs":"Reference » APIs » Examples","id":"113","title":"Examples"},"114":{"body":"Peers API shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » APIs » Peers API","id":"114","title":"Peers API"},"115":{"body":"GET /peers","breadcrumbs":"Reference » APIs » Request","id":"115","title":"Request"},"116":{"body":"To show peers of the cluster: $ curl -X GET 'http://localhost:8000/peers'","breadcrumbs":"Reference » APIs » Examples","id":"116","title":"Examples"},"117":{"body":"Metrics API shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.","breadcrumbs":"Reference » APIs » Metrics API","id":"117","title":"Metrics API"},"118":{"body":"GET /metrics","breadcrumbs":"Reference » APIs » Request","id":"118","title":"Request"},"119":{"body":"To show metrics: $ curl -X GET 'http://localhost:8000/metrics'","breadcrumbs":"Reference » APIs » Examples","id":"119","title":"Examples"},"12":{"body":"You can get document with the following command: $ ./bin/bayard get 1 | jq . You'll see the result in JSON format. The result of the above command is: { \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"id\": [ \"1\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1132 ], \"url\": [ \"https://github.com/bayard-search/bayard\" ]\n}","breadcrumbs":"Getting document","id":"12","title":"Getting document"},"120":{"body":"Put API puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.","breadcrumbs":"Reference » APIs » Put API","id":"120","title":"Put API"},"121":{"body":"PUT /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"121","title":"Request"},"122":{"body":" A unique value that identifies the document in the index. If specify an existing ID, the existing document in the index is overwritten.","breadcrumbs":"Reference » APIs » Path parameters","id":"122","title":"Path parameters"},"123":{"body":" Document fields expressed in JSON format.","breadcrumbs":"Reference » APIs » Request body","id":"123","title":"Request body"},"124":{"body":"To put a document: $ curl -X PUT \\ --header 'Content-Type: application/json' \\ --data-binary '{\"text\": \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\"}' \\ 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Example","id":"124","title":"Example"},"125":{"body":"Get API gets a document with the specified ID.","breadcrumbs":"Reference » APIs » Get API","id":"125","title":"Get API"},"126":{"body":"GET /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"126","title":"Request"},"127":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"127","title":"Path parameters"},"128":{"body":"To get a document: $ curl -X GET 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"128","title":"Examples"},"129":{"body":"Delete API deletes a document with the specified ID.","breadcrumbs":"Reference » APIs » Delete API","id":"129","title":"Delete API"},"13":{"body":"You can search documents with the following command: $ ./bin/bayard search --facet-field=category --facet-prefix=/category/search --facet-prefix=/language description:rust | jq . You'll see the result in JSON format. The result of the above command is: { \"count\": 2, \"docs\": [ { \"fields\": { \"category\": [ \"/category/search/library\", \"/language/rust\" ], \"description\": [ \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\" ], \"id\": [ \"8\" ], \"name\": [ \"Tantivy\" ], \"popularity\": [ 3100 ], \"url\": [ \"https://github.com/tantivy-search/tantivy\" ] }, \"score\": 1.5722498 }, { \"fields\": { \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"id\": [ \"1\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1132 ], \"url\": [ \"https://github.com/bayard-search/bayard\" ] }, \"score\": 1.5331805 } ], \"facet\": { \"category\": { \"/category/search/server\": 1, \"/category/search/library\": 1, \"/language/rust\": 2 } }\n}","breadcrumbs":"Searching documents","id":"13","title":"Searching documents"},"130":{"body":"DELETE /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"130","title":"Request"},"131":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"131","title":"Path parameters"},"132":{"body":"To delete a document: $ curl -X DELETE 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"132","title":"Examples"},"133":{"body":"Search API searches documents from the index.","breadcrumbs":"Reference » APIs » Search API","id":"133","title":"Search API"},"134":{"body":"GET /index/search","breadcrumbs":"Reference » APIs » Request","id":"134","title":"Request"},"135":{"body":"from Start position of fetching results. If not specified, use default value. [default: 0] limit Limitation of amount that document to be returned. If not specified, use default value. [default: 10] exclude_count A flag indicating whether or not to exclude hit count in the search results. If not specified, use default value. [default: true] exclude_docs A flag indicating whether or not to exclude hit documents in the search results. If not specified, use default value. [default: true] query Query string to search the index. facet_field Hierarchical facet field name. facet_prefix Hierarchical facet field value prefix.","breadcrumbs":"Reference » APIs » Query parameters","id":"135","title":"Query parameters"},"136":{"body":"To search documents from the index: $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&exclude_count' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&exclude_docs' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&facet_field=category&facet_prefix=/language&facet_prefix=/category/search'","breadcrumbs":"Reference » APIs » Example","id":"136","title":"Example"},"137":{"body":"Commit API commits updates made to the index.","breadcrumbs":"Reference » APIs » Commit API","id":"137","title":"Commit API"},"138":{"body":"GET /index/commit","breadcrumbs":"Reference » APIs » Request","id":"138","title":"Request"},"139":{"body":"To commit an index: $ curl -X GET 'http://localhost:8000/index/commit'","breadcrumbs":"Reference » APIs » Example","id":"139","title":"Example"},"14":{"body":"You can delete document with the following command: $ ./bin/bayard delete 1\n$ ./bin/bayard delete 2\n$ ./bin/bayard delete 3\n$ ./bin/bayard delete 4\n$ ./bin/bayard delete 5\n$ ./bin/bayard delete 6\n$ ./bin/bayard delete 7\n$ ./bin/bayard delete 8\n$ ./bin/bayard delete 9\n$ ./bin/bayard delete 10\n$ ./bin/bayard delete 11\n$ ./bin/bayard commit","breadcrumbs":"Deleting document","id":"14","title":"Deleting document"},"140":{"body":"Rollback API rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » APIs » Rollback API","id":"140","title":"Rollback API"},"141":{"body":"GET /index/rollback","breadcrumbs":"Reference » APIs » Request","id":"141","title":"Request"},"142":{"body":"To rollback an index: $ curl -X GET 'http://localhost:8000/index/rollback'","breadcrumbs":"Reference » APIs » Examples","id":"142","title":"Examples"},"143":{"body":"Merge API merges fragmented segments in the index.","breadcrumbs":"Reference » APIs » Merge API","id":"143","title":"Merge API"},"144":{"body":"GET /index/merge","breadcrumbs":"Reference » APIs » Request","id":"144","title":"Request"},"145":{"body":"To merge segments in the index: $ curl -X GET 'http://localhost:8000/index/merge'","breadcrumbs":"Reference » APIs » Examples","id":"145","title":"Examples"},"146":{"body":"Schema API shows the index schema that the server applied.","breadcrumbs":"Reference » APIs » Schema API","id":"146","title":"Schema API"},"147":{"body":"GET /index/schema","breadcrumbs":"Reference » APIs » Request","id":"147","title":"Request"},"148":{"body":"To show the index schema: $ curl -X GET 'http://localhost:8000/index/schema'","breadcrumbs":"Reference » APIs » Examples","id":"148","title":"Examples"},"15":{"body":"","breadcrumbs":"Designing schema","id":"15","title":"Designing schema"},"16":{"body":"Schema is a collection of field entries.","breadcrumbs":"Schema","id":"16","title":"Schema"},"17":{"body":"A field entry represents a field and its configuration. name A field name. type A field type. See Field type section. options Options describing how the field should be indexed. See Options section.","breadcrumbs":"Field entry","id":"17","title":"Field entry"},"18":{"body":"A field type describes the type of a field as well as how it should be handled. \"text\" String field type configuration. It can specify text options . \"u64\" Unsigned 64-bits integers field type configuration. It can specify numeric options . \"i64\" Signed 64-bits integers 64 field type configuration. It can specify numeric options . \"f64\" 64-bits float 64 field type configuration. It can specify numeric options . \"date\" Signed 64-bits Date 64 field type configuration. It can specify numeric options . \"hierarchical_facet\" Hierarchical Facet. \"bytes\" Bytes. (one per document)","breadcrumbs":"Field type","id":"18","title":"Field type"},"19":{"body":"","breadcrumbs":"Options","id":"19","title":"Options"},"2":{"body":"https://github.com/bayard-search/bayard","breadcrumbs":"Source code repository","id":"2","title":"Source code repository"},"20":{"body":"Configuration defining indexing for a text field. It defines the amount of information that should be stored about the presence of a term in a document. Essentially, should be store the term frequency and/or the positions, the name of the tokenizer that should be used to process the field. indexing record \"basic\" Records only the document IDs. \"freq\" Records the document ids as well as the term frequency. The term frequency can help giving better scoring of the documents. \"position\" Records the document id, the term frequency and the positions of the occurences in the document. Positions are required to run phrase queries. tokenizer \"default\" Chops the text on according to whitespace and punctuation, removes tokens that are too long, and lowercases tokens. \"raw\" Does not process nor tokenize the text. \"en_stem\" Like default, but also applies stemming on the resulting tokens. Stemming can improve the recall of your search engine. stored true Text is to be stored. false Text is not to be stored.","breadcrumbs":"Text options","id":"20","title":"Text options"},"21":{"body":"Configuration defining indexing for a numeric field. indexed true Value is to be indexed. false Value is not to be indexed. stored true Value is to be stored. false Value is not to be stored. fast: \"single\" The document must have exactly one value associated to the document. \"multi\" The document can have any number of values associated to the document. This is more memory and CPU expensive than the SingleValue solution.","breadcrumbs":"Numeric options","id":"21","title":"Numeric options"},"22":{"body":"Here is a sample schema: [ { \"name\": \"id\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"basic\", \"tokenizer\": \"raw\" }, \"stored\": true } }, { \"name\": \"url\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"freq\", \"tokenizer\": \"default\" }, \"stored\": true } }, { \"name\": \"name\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"description\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"popularity\", \"type\": \"u64\", \"options\": { \"indexed\": true, \"stored\": true, \"fast\": \"single\" } }, { \"name\": \"category\", \"type\": \"hierarchical_facet\" }, { \"name\": \"timestamp\", \"type\": \"date\", \"options\": { \"indexed\": true, \"stored\": true, \"fast\": \"single\" } }\n]","breadcrumbs":"Example schema","id":"22","title":"Example schema"},"23":{"body":"Bayard supports booting in cluster mode by itself. No external software is required, and you can easily bring up a cluster by adding a command flags.","breadcrumbs":"Cluster mode","id":"23","title":"Cluster mode"},"24":{"body":"Running in standalone is not fault tolerant. If you need to improve fault tolerance, start servers in cluster mode. You can start servers in cluster mode with the following command: $ ./bin/bayard serve \\ --id=1 \\ --host=0.0.0.0 \\ --port=5001 \\ --data-directory=./data/1 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id $ ./bin/bayard serve \\ --id=2 \\ --host=0.0.0.0 \\ --port=5002 \\ --peers=\"1=0.0.0.0:5001\" \\ --data-directory=./data/2 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id $ ./bin/bayard serve \\ --id=3 \\ --host=0.0.0.0 \\ --port=5003 \\ --peers=\"1=0.0.0.0:5001,2=0.0.0.0:5002\" \\ --data-directory=./data/3 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id The above commands run servers on the same host, so each server must listen on a different port. This would not be necessary if each server runs on a different host. Recommend 3 or more odd number of servers in the cluster to avoid split-brain. When deploying to a single host, if that host goes down due to hardware failure, all of the servers in the cluster will be stopped, so recommend deploying to a different host.","breadcrumbs":"Starting in cluster mode (3-node cluster)","id":"24","title":"Starting in cluster mode (3-node cluster)"},"25":{"body":"You can check the peers in the cluster with the following command: $ ./bin/bayard peers --servers localhost:5001 | jq . You'll see the result in JSON format. The result of the above command is: { \"1\": \"0.0.0.0:5001\", \"2\": \"0.0.0.0:5002\", \"3\": \"0.0.0.0:5003\"\n}","breadcrumbs":"Cluster peers","id":"25","title":"Cluster peers"},"26":{"body":"If one of the servers in a cluster goes down due to a hardware failure and raft logs and metadata is lost, that server cannot join the cluster again. If you want the server to join the cluster again, you must remove it from the cluster. The following command deletes the server with id=3 from the cluster: $ ./bin/bayard leave \\ --servers=127.0.0.1:5001 \\ --id=3","breadcrumbs":"Remove a server from a cluster","id":"26","title":"Remove a server from a cluster"},"27":{"body":"See the available Docker container image version at the following URL: https://hub.docker.com/r/bayardsearch/bayard/tags/","breadcrumbs":"Running on Docker","id":"27","title":"Running on Docker"},"28":{"body":"You can pull the Docker container image with the following command: $ docker pull bayardsearch/bayard:latest","breadcrumbs":"Pulling Docker container","id":"28","title":"Pulling Docker container"},"29":{"body":"You can run the Docker container image with the following command: $ docker run --rm --name bayard \\ -p 5000:5000 \\ bayardsearch/bayard:latest serve","breadcrumbs":"Running Docker container","id":"29","title":"Running Docker container"},"3":{"body":"https://hub.docker.com/r/bayardsearch/bayard","breadcrumbs":"Docker container repository","id":"3","title":"Docker container repository"},"30":{"body":"bayard APIs","breadcrumbs":"Reference","id":"30","title":"Reference"},"31":{"body":"The bayard CLI manages server, cluster and index.","breadcrumbs":"Reference » bayard","id":"31","title":"bayard"},"32":{"body":"bayard ","breadcrumbs":"Reference » USAGE","id":"32","title":"USAGE"},"33":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » FLAGS","id":"33","title":"FLAGS"},"34":{"body":"serve The `bayard serve` CLI starts the server.\nprobe The `bayard probe` CLI probes the server.\npeers The `bayard peers` CLI shows the peer addresses of the cluster that the specified server is joining.\nmetrics The `bayard metrics` CLI shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.\nleave The `bayard leave` CLI removes the server with the specified ID from the cluster that the specified server is joining.\nput The `bayard put` CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.\nget The `bayard get` CLI gets a document with the specified ID.\ndelete The `bayard delete` CLI deletes a document with the specified ID.\ncommit The `bayard commit` CLI commits updates made to the index.\nrollback The `bayard rollback` CLI rolls back any updates made to the index to the last committed state.\nmerge The `bayard merge` CLI merges fragmented segments in the index.\nsearch The `bayard search` CLI searches documents from the index.\nschema The `bayard schema` CLI shows the index schema that the server applied.\nschedule The `bayard schedule` CLI starts the job scheduler.\ngateway The `bayard gateway` CLI starts a gateway for access the server over HTTP.\nhelp Prints this message or the help of the given subcommand(s)","breadcrumbs":"Reference » SUBCOMMANDS","id":"34","title":"SUBCOMMANDS"},"35":{"body":"To print version information: $ ./bin/bayard -v","breadcrumbs":"Reference » EXAMPLES","id":"35","title":"EXAMPLES"},"36":{"body":"The bayard serve CLI starts the server.","breadcrumbs":"Reference » bayard » bayard serve","id":"36","title":"bayard serve"},"37":{"body":"bayard serve [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"37","title":"USAGE"},"38":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"38","title":"FLAGS"},"39":{"body":"-i, --id Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default ID. [default: 1]\n-H, --host Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]\n-P, --port Port number. This port is used for communication via gRPC. If not specified, use the default port. [default: 5000]\n-p, --peers ... Server ID and addresses in an existing cluster separated by \",\". If specified, the server will join the cluster.\n-d, --data-directory Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory. [default: ./data]\n-s, --schema-file Schema file. Must specify An existing file name. If not specified, use the default schema file. [default: ./etc/schema.json]\n-u, --unique-key-field-name Unique key field name. Specify the field name to be treated as a unique key in the field defined in the schema. If not specified, use the default unique key field name. [default: id]","breadcrumbs":"Reference » bayard » OPTIONS","id":"39","title":"OPTIONS"},"4":{"body":"https://bayard-search.github.io/bayard/","breadcrumbs":"Documents","id":"4","title":"Documents"},"40":{"body":"To start a server with default options: $ ./bin/bayard serve To start a server with options: $ ./bin/bayard serve \\ --id=1 \\ --host=0.0.0.0 \\ --port=5001 \\ --data-directory=./data/1 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id","breadcrumbs":"Reference » bayard » EXAMPLES","id":"40","title":"EXAMPLES"},"41":{"body":"The bayard probe CLI probes the server.","breadcrumbs":"Reference » bayard » bayard probe","id":"41","title":"bayard probe"},"42":{"body":"bayard probe [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"42","title":"USAGE"},"43":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"43","title":"FLAGS"},"44":{"body":"-s, --server Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"44","title":"OPTIONS"},"45":{"body":"To probe a server with default options: $ ./bin/bayard probe To probe a server with options: $ ./bin/bayard probe --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"45","title":"EXAMPLES"},"46":{"body":"The bayard peers CLI shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard peers","id":"46","title":"bayard peers"},"47":{"body":"bayard peers [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"47","title":"USAGE"},"48":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"48","title":"FLAGS"},"49":{"body":"-s, --server Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"49","title":"OPTIONS"},"5":{"body":"","breadcrumbs":"Building Bayard","id":"5","title":"Building Bayard"},"50":{"body":"To show peers of the cluster with default options: $ ./bin/bayard peers To show peers of the cluster with options: $ ./bin/bayard peers --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"50","title":"EXAMPLES"},"51":{"body":"The bayard metrics CLI shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.","breadcrumbs":"Reference » bayard » bayard metrics","id":"51","title":"bayard metrics"},"52":{"body":"bayard metrics [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"52","title":"USAGE"},"53":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"53","title":"FLAGS"},"54":{"body":"-s, --server IP:PORT Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"54","title":"OPTIONS"},"55":{"body":"To show metrics with default options: $ ./bin/bayard metrics To show metrics with options: $ ./bin/bayard metrics --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"55","title":"EXAMPLES"},"56":{"body":"The bayard leave CLI removes the server with the specified ID from the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard leave","id":"56","title":"bayard leave"},"57":{"body":"bayard leave [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"57","title":"USAGE"},"58":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"58","title":"FLAGS"},"59":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-i, --id Node ID to be removed from the cluster that specified server is joining. [default: 1]","breadcrumbs":"Reference » bayard » OPTIONS","id":"59","title":"OPTIONS"},"6":{"body":"The following products are required to build Bayrad: Rust >= 1.39.0 make >= 3.81 protoc >= 3.9.2","breadcrumbs":"Requirements","id":"6","title":"Requirements"},"60":{"body":"To remove a server with default options: $ ./bin/bayard leave To probe a server with options: $ ./bin/bayard leave --servers=127.0.0.1:5001 --id=3","breadcrumbs":"Reference » bayard » EXAMPLES","id":"60","title":"EXAMPLES"},"61":{"body":"The bayard put CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.","breadcrumbs":"Reference » bayard » bayard put","id":"61","title":"bayard put"},"62":{"body":"bayard put [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"62","title":"USAGE"},"63":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"63","title":"FLAGS"},"64":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"64","title":"OPTIONS"},"65":{"body":" A unique value that identifies the document in the index. If specify an existing ID, the existing document in the index is overwritten.\n Document fields expressed in JSON format.","breadcrumbs":"Reference » bayard » ARGS","id":"65","title":"ARGS"},"66":{"body":"To put a document with default options: $ ./bin/bayard put 1 '{ \"url\": \"https://github.com/bayard-search/bayard\", \"name\": \"Bayard\", \"description\": \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\", \"star\": 1132, \"facet\": [\"/category/search/server\", \"/language/rust\"]\n}' To put a document with options: $ ./bin/bayard put --servers=127.0.0.1:5001 1 '{ \"url\": \"https://github.com/bayard-search/bayard\", \"name\": \"Bayard\", \"description\": \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\", \"star\": 1132, \"facet\": [\"/category/search/server\", \"/language/rust\"]\n}'","breadcrumbs":"Reference » bayard » EXAMPLES","id":"66","title":"EXAMPLES"},"67":{"body":"The bayard get CLI gets a document with the specified ID.","breadcrumbs":"Reference » bayard » bayard get","id":"67","title":"bayard get"},"68":{"body":"bayard get [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"68","title":"USAGE"},"69":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"69","title":"FLAGS"},"7":{"body":"Build Bayard with the following command: $ make build When the build is successful, the binary file is output to the following directory: $ ls ./bin","breadcrumbs":"Build","id":"7","title":"Build"},"70":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"70","title":"OPTIONS"},"71":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » bayard » ARGS","id":"71","title":"ARGS"},"72":{"body":"To get a document with default options: $ ./bin/bayard get 1 To get a document with options: $ ./bin/bayard get --servers=127.0.0.1:5001 1","breadcrumbs":"Reference » bayard » EXAMPLES","id":"72","title":"EXAMPLES"},"73":{"body":"The bayard commit CLI commits updates made to the index.","breadcrumbs":"Reference » bayard » bayard commit","id":"73","title":"bayard commit"},"74":{"body":"bayard commit [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"74","title":"USAGE"},"75":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"75","title":"FLAGS"},"76":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"76","title":"OPTIONS"},"77":{"body":"To commit an index with default options: $ ./bin/bayard commit To commit an index with options: $ ./bin/bayard commit --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"77","title":"EXAMPLES"},"78":{"body":"The bayard rollback CLI rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » bayard » bayard rollback","id":"78","title":"bayard rollback"},"79":{"body":"bayard rollback [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"79","title":"USAGE"},"8":{"body":"","breadcrumbs":"Getting started","id":"8","title":"Getting started"},"80":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"80","title":"FLAGS"},"81":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"81","title":"OPTIONS"},"82":{"body":"To rollback an index with default options: $ ./bin/bayard rollback To rollback an index with options: $ ./bin/bayard rollback --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"82","title":"EXAMPLES"},"83":{"body":"The bayard merge CLI merges fragmented segments in the index.","breadcrumbs":"Reference » bayard » bayard merge","id":"83","title":"bayard merge"},"84":{"body":"bayard merge [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"84","title":"USAGE"},"85":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"85","title":"FLAGS"},"86":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"86","title":"OPTIONS"},"87":{"body":"To merge segments in the index with default options: $ ./bin/bayard merge To merge segments in the index with options: $ ./bin/bayard merge --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"87","title":"EXAMPLES"},"88":{"body":"The bayard search CLI searches documents from the index.","breadcrumbs":"Reference » bayard » bayard search","id":"88","title":"bayard search"},"89":{"body":"bayard search [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"89","title":"USAGE"},"9":{"body":"Running node in standalone mode is easy. You can start server with the following command: $ ./bin/bayard serve You'll see a startup message like following: [2019-11-27T00:30:45Z INFO bayard::server::server src/server/server.rs:119] listening on 0.0.0.0:5000\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:723] became follower at term 0\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:295] newRaft [peers: [1], term: 0, commit: 0, applied: 0, last_index: 0, last_term: 0]\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:723] became follower at term 1 [...] [2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:1094] is starting a new election at term 1\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:743] became candidate at term 2\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:858] received MsgRequestVoteResponse from 1 at term 2\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:793] became leader at term 2","breadcrumbs":"Starting in standalone mode (Single node cluster)","id":"9","title":"Starting in standalone mode (Single node cluster)"},"90":{"body":"-c, --exclude-count A flag indicating whether or not to exclude hit count in the search results.\n-d, --exclude-docs A flag indicating whether or not to exclude hit documents in the search results\n-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"90","title":"FLAGS"},"91":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-f, --from Start position of fetching results. If not specified, use default value. [default: 0]\n-l, --limit Limitation of amount that document to be returned. If not specified, use default value. [default: 10]\n-F, --facet-field Hierarchical facet field name. [default: ]\n-V, --facet-prefix ... Hierarchical facet field value prefix.","breadcrumbs":"Reference » bayard » OPTIONS","id":"91","title":"OPTIONS"},"92":{"body":" Query string to search the index.","breadcrumbs":"Reference » bayard » ARGS","id":"92","title":"ARGS"},"93":{"body":"To search documents from the index with default options: $ ./bin/bayard search text:\"rust\" To search documents from the index with options: $ ./bin/bayard search --servers=127.0.0.1:5001 --from=10 --limit=20 text:\"rust\"","breadcrumbs":"Reference » bayard » EXAMPLES","id":"93","title":"EXAMPLES"},"94":{"body":"The bayard schema CLI shows the index schema that the server applied.","breadcrumbs":"Reference » bayard » bayard schema","id":"94","title":"bayard schema"},"95":{"body":"bayard schema [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"95","title":"USAGE"},"96":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"96","title":"FLAGS"},"97":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"97","title":"OPTIONS"},"98":{"body":"To show the index schema with default options: $ ./bin/bayard schema To show the index schema with options: $ ./bin/bayard schema --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"98","title":"EXAMPLES"},"99":{"body":"The bayard schedule CLI starts the job scheduler.","breadcrumbs":"Reference » bayard » bayard schedule","id":"99","title":"bayard schedule"}},"length":149,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"25":{"tf":1.0}}},"2":{"df":1,"docs":{"25":{"tf":1.0}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{"9":{"4":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"5":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"8":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"t":{"0":{"4":{":":{"0":{"0":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"0":{"5":{":":{"3":{"0":{":":{"2":{"6":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"135":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.0}}},"1":{".":{"3":{"9":{".":{"0":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"1":{"8":{"0":{"5":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"4":{"9":{"8":{"df":1,"docs":{"13":{"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":4,"docs":{"11":{"tf":2.0},"135":{"tf":1.0},"14":{"tf":1.0},"91":{"tf":1.0}},"t":{"2":{"3":{":":{"1":{"3":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"2":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":2.8284271247461903}}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"0":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"11":{"tf":2.8284271247461903}}},"6":{"df":0,"docs":{},"t":{"0":{"7":{":":{"1":{"2":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"1":{"9":{":":{"5":{"0":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"df":0,"docs":{},"t":{"0":{"8":{":":{"1":{"9":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"0":{"8":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":2.0}},"e":{"c":{"c":{"6":{"2":{"9":{"9":{"d":{"b":{"9":{"df":0,"docs":{},"e":{"c":{"8":{"2":{"3":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"11":{"tf":3.3166247903554},"9":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"8":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"3":{"0":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":2.0}}}},"8":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"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":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"3":{".":{"8":{"1":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"1":{"6":{":":{"1":{"3":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0}}},"4":{"6":{"0":{"5":{"4":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"5":{"0":{"0":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"6":{"2":{"1":{"1":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"18":{"tf":2.6457513110645907}}},"5":{"4":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"7":{"8":{"9":{"5":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"9":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"34":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"114":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"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":{"0":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"20":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"124":{"tf":1.0},"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"p":{"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":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"146":{"tf":1.0},"20":{"tf":1.0},"34":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"34":{"tf":3.872983346207417},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.4641016151377544},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"124":{"tf":1.0},"7":{"tf":1.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"18":{"tf":2.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"102":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":3.872983346207417},"36":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"25":{"tf":1.4142135623730951},"26":{"tf":2.449489742783178},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"/":{"1":{"0":{"df":1,"docs":{"104":{"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":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.23606797749979},"20":{"tf":1.0},"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"24":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"y":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":2,"docs":{"39":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":32,"docs":{"10":{"tf":1.0},"102":{"tf":2.449489742783178},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"135":{"tf":2.8284271247461903},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"39":{"tf":3.4641016151377544},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"91":{"tf":2.6457513110645907},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":3.605551275463989},"26":{"tf":1.0},"34":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0},"66":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"13":{"tf":1.0},"90":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":32,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":2.0},"34":{"tf":2.23606797749979},"4":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":2.449489742783178},"124":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"f":{"6":{"4":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"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":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}},"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":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":5,"docs":{"13":{"tf":2.0},"135":{"tf":1.4142135623730951},"18":{"tf":1.0},"66":{"tf":1.4142135623730951},"91":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.6457513110645907},"18":{"tf":2.8284271247461903},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"=":{".":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"tf":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":{"39":{"tf":2.0},"7":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"135":{"tf":1.4142135623730951},"23":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"20":{"tf":2.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"=":{"1":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0},"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"11":{"tf":1.7320508075688772}},"e":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"135":{"tf":1.4142135623730951},"18":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}},"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":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"11":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"108":{"tf":2.0},"24":{"tf":2.23606797749979},"39":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"1":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"?":{"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"=":{"0":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"0":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"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":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"&":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":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":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"116":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"105":{"tf":1.0},"108":{"tf":1.0},"34":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"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":0,"docs":{},"m":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"0":{"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":{"b":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{".":{"c":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"18":{"tf":1.0}}},"df":0,"docs":{}},"d":{"=":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":3,"docs":{"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"34":{"tf":2.23606797749979},"39":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.449489742783178},"31":{"tf":1.0},"34":{"tf":2.23606797749979},"39":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":2.8284271247461903}},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"34":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"q":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.4641016151377544},"12":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"65":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"24":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"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":1,"docs":{"11":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":2.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"2":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"0":{"0":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"26":{"tf":1.0},"39":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":2.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"a":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"34":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"34":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"34":{"tf":2.0},"51":{"tf":2.0},"52":{"tf":1.0},"55":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}},"s":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"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":1,"docs":{"9":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"10":{"tf":2.8284271247461903},"108":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"135":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.8284271247461903},"29":{"tf":1.0},"39":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"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":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":4,"docs":{"120":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"24":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"18":{"tf":2.0},"21":{"tf":1.4142135623730951},"39":{"tf":1.0}}}}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.449489742783178},"37":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"34":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0}}}}},"df":3,"docs":{"108":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"25":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"39":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":2.0},"9":{"tf":1.0}},"s":{"=":{"\"":{"1":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"1":{",":{"2":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"2":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"18":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"108":{"tf":2.23606797749979},"24":{"tf":1.0},"39":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"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":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"34":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"45":{"tf":2.0},"60":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":8,"docs":{"11":{"tf":3.3166247903554},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"124":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":2.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"11":{"tf":1.0},"135":{"tf":1.7320508075688772},"20":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"39":{"tf":1.0}}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"d":{"df":3,"docs":{"10":{"tf":2.0},"20":{"tf":2.0},"22":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"m":{"df":1,"docs":{"29":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"34":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"20":{"tf":1.0},"24":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"34":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}}},"df":14,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"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":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":16,"docs":{"0":{"tf":1.4142135623730951},"11":{"tf":3.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":2.23606797749979},"133":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"20":{"tf":1.0},"34":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"103":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"24":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":3,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":40,"docs":{"0":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":3.0},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":10,"docs":{"109":{"tf":1.0},"26":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"34":{"tf":1.7320508075688772},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"2":{"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":26,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":2.0},"18":{"tf":2.23606797749979},"34":{"tf":2.8284271247461903},"39":{"tf":3.3166247903554},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"9":{"df":1,"docs":{"9":{"tf":1.0}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"135":{"tf":1.0},"24":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.449489742783178},"20":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"39":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"135":{"tf":1.0},"18":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"34":{"tf":1.0}}},"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"x":{"df":0,"docs":{},"t":{":":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.0},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":2.449489742783178},"22":{"tf":2.0},"66":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"22":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":2.0},"20":{"tf":2.449489742783178},"22":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"p":{"df":5,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"135":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.8284271247461903}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.6457513110645907},"11":{"tf":1.0},"124":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":2.8284271247461903},"22":{"tf":2.6457513110645907}}}}}},"u":{"6":{"4":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"24":{"tf":1.7320508075688772},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"39":{"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":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"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":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"137":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":14,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"110":{"tf":1.0},"135":{"tf":2.0},"20":{"tf":1.0},"39":{"tf":2.6457513110645907},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":2.23606797749979},"21":{"tf":2.449489742783178},"65":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"20":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"x":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"25":{"tf":1.0}}},"2":{"df":1,"docs":{"25":{"tf":1.0}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{"9":{"4":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"5":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"8":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":0,"docs":{},"t":{"0":{"4":{":":{"0":{"0":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"0":{"5":{":":{"3":{"0":{":":{"2":{"6":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"135":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.0}}},"1":{".":{"3":{"9":{".":{"0":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"1":{"8":{"0":{"5":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"4":{"9":{"8":{"df":1,"docs":{"13":{"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":4,"docs":{"11":{"tf":2.0},"135":{"tf":1.0},"14":{"tf":1.0},"91":{"tf":1.0}},"t":{"2":{"3":{":":{"1":{"3":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"3":{"2":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"9":{"tf":2.8284271247461903}}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"0":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"11":{"tf":2.8284271247461903}}},"6":{"df":0,"docs":{},"t":{"0":{"7":{":":{"1":{"2":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"t":{"1":{"9":{":":{"5":{"0":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"9":{"df":0,"docs":{},"t":{"0":{"8":{":":{"1":{"9":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"0":{"8":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":2.0}},"e":{"c":{"c":{"6":{"2":{"9":{"9":{"d":{"b":{"9":{"df":0,"docs":{},"e":{"c":{"8":{"2":{"3":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"11":{"tf":3.3166247903554},"9":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"8":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"3":{"0":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":2.0}}}},"8":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"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":7,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"3":{".":{"8":{"1":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"t":{"1":{"6":{":":{"1":{"3":{":":{"0":{"0":{"+":{"0":{"9":{":":{"0":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0}}},"4":{"6":{"0":{"5":{"4":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"5":{"0":{"0":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"6":{"2":{"1":{"1":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"18":{"tf":2.6457513110645907}}},"5":{"4":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"7":{"8":{"9":{"5":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0}}},"9":{"df":2,"docs":{"11":{"tf":1.0},"14":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"34":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"114":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":1,"docs":{"23":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"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":{"0":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"20":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"124":{"tf":1.0},"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":40,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"30":{"tf":1.0}}},"p":{"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":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"146":{"tf":1.0},"20":{"tf":1.0},"34":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":87,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":3.872983346207417},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"28":{"tf":1.0},"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.4641016151377544},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"124":{"tf":1.0},"7":{"tf":1.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"18":{"tf":2.0}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"22":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":2.0},"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"102":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":3.872983346207417},"36":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.8284271247461903},"25":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"/":{"1":{"0":{"df":1,"docs":{"104":{"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":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"137":{"tf":2.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":2.0},"73":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.23606797749979},"20":{"tf":1.0},"21":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"24":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"y":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":2,"docs":{"39":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":32,"docs":{"10":{"tf":1.0},"102":{"tf":2.449489742783178},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"135":{"tf":2.8284271247461903},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"39":{"tf":3.4641016151377544},"40":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"91":{"tf":2.6457513110645907},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"39":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"129":{"tf":2.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"14":{"tf":3.7416573867739413},"26":{"tf":1.0},"34":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0},"66":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"39":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"13":{"tf":1.0},"90":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":2.0},"3":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":32,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":2.0},"34":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":2.449489742783178},"124":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"21":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"123":{"tf":1.0},"65":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"f":{"6":{"4":{"df":1,"docs":{"18":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"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":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}},"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":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":5,"docs":{"13":{"tf":2.0},"135":{"tf":1.4142135623730951},"18":{"tf":1.0},"66":{"tf":1.4142135623730951},"91":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"11":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.8284271247461903},"18":{"tf":3.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"34":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"=":{".":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"tf":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":{"39":{"tf":2.0},"7":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"23":{"tf":1.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"20":{"tf":2.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"=":{"1":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":2.449489742783178},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"105":{"tf":2.0},"106":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0},"34":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":6,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"11":{"tf":1.7320508075688772}},"e":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"39":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"135":{"tf":1.4142135623730951},"18":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}}}},"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":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"11":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"108":{"tf":2.0},"24":{"tf":2.23606797749979},"39":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"1":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"?":{"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"=":{"0":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"0":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"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":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"&":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":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":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"116":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"105":{"tf":1.0},"108":{"tf":1.0},"34":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"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":0,"docs":{},"m":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"0":{"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":{"b":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":1,"docs":{"11":{"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":{},"w":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{".":{"c":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"18":{"tf":1.0}}},"df":0,"docs":{}},"d":{"=":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":3,"docs":{"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"34":{"tf":2.23606797749979},"39":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"22":{"tf":2.449489742783178},"31":{"tf":1.0},"34":{"tf":2.23606797749979},"39":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":2.8284271247461903}},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"34":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"26":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}},"q":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.4641016151377544},"12":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"65":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"24":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"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":1,"docs":{"11":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":2.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"2":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"0":{"0":{"1":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"26":{"tf":1.0},"39":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":2.0},"124":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"a":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"143":{"tf":2.0},"145":{"tf":1.0},"34":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"34":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"117":{"tf":2.23606797749979},"118":{"tf":1.0},"119":{"tf":1.0},"34":{"tf":2.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"55":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":2.0},"9":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0}}}}},"s":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"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":1,"docs":{"9":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"24":{"tf":1.7320508075688772},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"10":{"tf":2.8284271247461903},"108":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"135":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.8284271247461903},"29":{"tf":1.0},"39":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"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":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":4,"docs":{"120":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"59":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"18":{"tf":2.0},"21":{"tf":1.7320508075688772},"39":{"tf":1.0}}}}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"21":{"tf":1.0},"26":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.23606797749979},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"34":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"108":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"25":{"tf":2.0},"34":{"tf":1.7320508075688772},"39":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"50":{"tf":2.0},"9":{"tf":1.0}},"s":{"=":{"\"":{"1":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"1":{",":{"2":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"2":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"18":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"1":{"df":2,"docs":{"24":{"tf":1.0},"40":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"108":{"tf":2.23606797749979},"24":{"tf":1.0},"39":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"135":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}},"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":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":8,"docs":{"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"34":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":2.0},"60":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"117":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":2.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.0}}}},"t":{"df":8,"docs":{"11":{"tf":3.3166247903554},"120":{"tf":2.0},"121":{"tf":1.0},"124":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":1.0},"66":{"tf":2.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"11":{"tf":1.0},"135":{"tf":2.0},"20":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"39":{"tf":1.0}}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"d":{"df":3,"docs":{"10":{"tf":2.0},"20":{"tf":2.0},"22":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":119,"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.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"20":{"tf":1.0},"26":{"tf":1.7320508075688772},"34":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"11":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"135":{"tf":1.0},"91":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}},"m":{"df":1,"docs":{"29":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"34":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"20":{"tf":1.0},"24":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"29":{"tf":2.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"34":{"tf":1.7320508075688772},"99":{"tf":2.0}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":2.0},"11":{"tf":1.0},"146":{"tf":2.0},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0},"98":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0}}}}}},"df":14,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"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":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}},"df":16,"docs":{"0":{"tf":1.4142135623730951},"11":{"tf":3.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":2.449489742783178},"133":{"tf":2.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"20":{"tf":1.0},"34":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"103":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"143":{"tf":1.0},"145":{"tf":1.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"24":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":3,"docs":{"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":40,"docs":{"0":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":2.449489742783178},"31":{"tf":1.0},"34":{"tf":3.0},"36":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":10,"docs":{"109":{"tf":1.0},"26":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"34":{"tf":1.7320508075688772},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":26,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":2.0},"18":{"tf":2.23606797749979},"34":{"tf":2.8284271247461903},"39":{"tf":3.3166247903554},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"9":{"df":1,"docs":{"9":{"tf":1.0}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"t":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"135":{"tf":1.0},"24":{"tf":2.0},"34":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"91":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"140":{"tf":1.0},"34":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.449489742783178},"20":{"tf":2.23606797749979},"21":{"tf":1.7320508075688772},"22":{"tf":2.449489742783178},"39":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"135":{"tf":1.0},"18":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"11":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"34":{"tf":1.0}}},"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"x":{"df":0,"docs":{},"t":{":":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.0},"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":2.6457513110645907},"22":{"tf":2.0},"66":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"22":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":2.0},"20":{"tf":2.449489742783178},"22":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"11":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"p":{"df":5,"docs":{"0":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"66":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"135":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"22":{"tf":2.8284271247461903}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.6457513110645907},"11":{"tf":1.0},"124":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":3.0},"22":{"tf":2.6457513110645907}}}}}},"u":{"6":{"4":{"df":3,"docs":{"10":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"24":{"tf":1.7320508075688772},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"39":{"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":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"18":{"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":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"137":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"23":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"11":{"tf":3.3166247903554},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":14,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"110":{"tf":1.0},"135":{"tf":2.0},"20":{"tf":1.0},"39":{"tf":2.6457513110645907},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":2.23606797749979},"21":{"tf":2.449489742783178},"65":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"108":{"tf":1.0},"39":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"18":{"tf":1.0},"20":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"0":{"tf":1.0},"11":{"tf":2.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"x":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"25":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"title":{"root":{"3":{"df":1,"docs":{"24":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":12,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"65":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":17,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"4":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"22":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"17":{"tf":1.0},"18":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"117":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"25":{"tf":1.0},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"111":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"61":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"26":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"140":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"10":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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#bayard","overview.html#features","overview.html#source-code-repository","overview.html#docker-container-repository","overview.html#documents","building_bayard.html#building-bayard","building_bayard.html#requirements","building_bayard.html#build","getting_started.html#getting-started","getting_started.html#starting-in-standalone-mode-single-node-cluster","getting_started.html#getting-schema","getting_started.html#indexing-document","getting_started.html#getting-document","getting_started.html#indexing-documents-in-bulk","getting_started.html#searching-documents","getting_started.html#deleting-document","getting_started.html#deleting-documents-in-bulk","designing_schema.html#designing-schema","designing_schema.html#schema","designing_schema.html#field-entry","designing_schema.html#field-type","designing_schema.html#options","designing_schema.html#text-options","designing_schema.html#numeric-options","designing_schema.html#example-schema","cluster_mode.html#cluster-mode","cluster_mode.html#starting-in-cluster-mode-3-node-cluster","cluster_mode.html#cluster-peers","cluster_mode.html#remove-a-server-from-a-cluster","running_on_docker.html#running-on-docker","running_on_docker.html#pulling-docker-container","running_on_docker.html#running-docker-container","reference.html#reference","reference/bayard.html#bayard","reference/bayard.html#usage","reference/bayard.html#flags","reference/bayard.html#subcommands","reference/bayard.html#examples","reference/bayard/serve.html#bayard-serve","reference/bayard/serve.html#usage","reference/bayard/serve.html#flags","reference/bayard/serve.html#options","reference/bayard/serve.html#examples","reference/bayard/probe.html#bayard-probe","reference/bayard/probe.html#usage","reference/bayard/probe.html#flags","reference/bayard/probe.html#options","reference/bayard/probe.html#examples","reference/bayard/peers.html#bayard-peers","reference/bayard/peers.html#usage","reference/bayard/peers.html#flags","reference/bayard/peers.html#options","reference/bayard/peers.html#examples","reference/bayard/metrics.html#bayard-metrics","reference/bayard/metrics.html#usage","reference/bayard/metrics.html#flags","reference/bayard/metrics.html#options","reference/bayard/metrics.html#examples","reference/bayard/leave.html#bayard-leave","reference/bayard/leave.html#usage","reference/bayard/leave.html#flags","reference/bayard/leave.html#options","reference/bayard/leave.html#examples","reference/bayard/put.html#bayard-put","reference/bayard/put.html#usage","reference/bayard/put.html#flags","reference/bayard/put.html#options","reference/bayard/put.html#examples","reference/bayard/get.html#bayard-get","reference/bayard/get.html#usage","reference/bayard/get.html#flags","reference/bayard/get.html#options","reference/bayard/get.html#examples","reference/bayard/commit.html#bayard-commit","reference/bayard/commit.html#usage","reference/bayard/commit.html#flags","reference/bayard/commit.html#options","reference/bayard/commit.html#examples","reference/bayard/rollback.html#bayard-rollback","reference/bayard/rollback.html#usage","reference/bayard/rollback.html#flags","reference/bayard/rollback.html#options","reference/bayard/rollback.html#examples","reference/bayard/merge.html#bayard-merge","reference/bayard/merge.html#usage","reference/bayard/merge.html#flags","reference/bayard/merge.html#options","reference/bayard/merge.html#examples","reference/bayard/search.html#bayard-search","reference/bayard/search.html#usage","reference/bayard/search.html#flags","reference/bayard/search.html#options","reference/bayard/search.html#args","reference/bayard/search.html#examples","reference/bayard/schema.html#bayard-schema","reference/bayard/schema.html#usage","reference/bayard/schema.html#flags","reference/bayard/schema.html#options","reference/bayard/schema.html#examples","reference/bayard/schedule.html#bayard-schedule","reference/bayard/schedule.html#usage","reference/bayard/schedule.html#flags","reference/bayard/schedule.html#options","reference/bayard/schedule.html#schedule-format","reference/bayard/schedule.html#examples","reference/bayard/gateway.html#bayard-gateway","reference/bayard/gateway.html#usage","reference/bayard/gateway.html#flags","reference/bayard/gateway.html#options","reference/bayard/gateway.html#examples","reference/apis.html#rest-api","reference/apis/probe.html#probe-api","reference/apis/probe.html#request","reference/apis/probe.html#examples","reference/apis/peers.html#peers-api","reference/apis/peers.html#request","reference/apis/peers.html#examples","reference/apis/metrics.html#metrics-api","reference/apis/metrics.html#request","reference/apis/metrics.html#examples","reference/apis/put.html#put-api","reference/apis/put.html#request","reference/apis/put.html#path-parameters","reference/apis/put.html#request-body","reference/apis/put.html#example","reference/apis/get.html#get-api","reference/apis/get.html#request","reference/apis/get.html#path-parameters","reference/apis/get.html#examples","reference/apis/delete.html#delete-api","reference/apis/delete.html#request","reference/apis/delete.html#path-parameters","reference/apis/delete.html#request-body","reference/apis/delete.html#examples","reference/apis/search.html#search-api","reference/apis/search.html#request","reference/apis/search.html#query-parameters","reference/apis/search.html#example","reference/apis/commit.html#commit-api","reference/apis/commit.html#request","reference/apis/commit.html#example","reference/apis/rollback.html#rollback-api","reference/apis/rollback.html#request","reference/apis/rollback.html#examples","reference/apis/merge.html#merge-api","reference/apis/merge.html#request","reference/apis/merge.html#examples","reference/apis/schema.html#schema-api","reference/apis/schema.html#request","reference/apis/schema.html#examples"],"index":{"documentStore":{"docInfo":{"0":{"body":47,"breadcrumbs":1,"title":1},"1":{"body":12,"breadcrumbs":1,"title":1},"10":{"body":90,"breadcrumbs":2,"title":2},"100":{"body":3,"breadcrumbs":3,"title":1},"101":{"body":10,"breadcrumbs":3,"title":1},"102":{"body":44,"breadcrumbs":3,"title":1},"103":{"body":12,"breadcrumbs":4,"title":2},"104":{"body":17,"breadcrumbs":3,"title":1},"105":{"body":9,"breadcrumbs":4,"title":2},"106":{"body":3,"breadcrumbs":3,"title":1},"107":{"body":10,"breadcrumbs":3,"title":1},"108":{"body":46,"breadcrumbs":3,"title":1},"109":{"body":14,"breadcrumbs":3,"title":1},"11":{"body":12,"breadcrumbs":2,"title":2},"110":{"body":16,"breadcrumbs":3,"title":2},"111":{"body":4,"breadcrumbs":4,"title":2},"112":{"body":1,"breadcrumbs":3,"title":1},"113":{"body":5,"breadcrumbs":3,"title":1},"114":{"body":9,"breadcrumbs":4,"title":2},"115":{"body":1,"breadcrumbs":3,"title":1},"116":{"body":6,"breadcrumbs":3,"title":1},"117":{"body":12,"breadcrumbs":4,"title":2},"118":{"body":1,"breadcrumbs":3,"title":1},"119":{"body":5,"breadcrumbs":3,"title":1},"12":{"body":38,"breadcrumbs":2,"title":2},"120":{"body":13,"breadcrumbs":4,"title":2},"121":{"body":4,"breadcrumbs":3,"title":1},"122":{"body":13,"breadcrumbs":4,"title":2},"123":{"body":6,"breadcrumbs":4,"title":2},"124":{"body":27,"breadcrumbs":3,"title":1},"125":{"body":5,"breadcrumbs":3,"title":1},"126":{"body":1,"breadcrumbs":3,"title":1},"127":{"body":6,"breadcrumbs":4,"title":2},"128":{"body":4,"breadcrumbs":3,"title":1},"129":{"body":6,"breadcrumbs":4,"title":2},"13":{"body":13,"breadcrumbs":3,"title":3},"130":{"body":4,"breadcrumbs":3,"title":1},"131":{"body":6,"breadcrumbs":4,"title":2},"132":{"body":5,"breadcrumbs":4,"title":2},"133":{"body":20,"breadcrumbs":3,"title":1},"134":{"body":5,"breadcrumbs":4,"title":2},"135":{"body":1,"breadcrumbs":3,"title":1},"136":{"body":67,"breadcrumbs":4,"title":2},"137":{"body":15,"breadcrumbs":3,"title":1},"138":{"body":6,"breadcrumbs":4,"title":2},"139":{"body":1,"breadcrumbs":3,"title":1},"14":{"body":87,"breadcrumbs":2,"title":2},"140":{"body":5,"breadcrumbs":3,"title":1},"141":{"body":10,"breadcrumbs":4,"title":2},"142":{"body":1,"breadcrumbs":3,"title":1},"143":{"body":5,"breadcrumbs":3,"title":1},"144":{"body":6,"breadcrumbs":4,"title":2},"145":{"body":1,"breadcrumbs":3,"title":1},"146":{"body":6,"breadcrumbs":3,"title":1},"147":{"body":7,"breadcrumbs":4,"title":2},"148":{"body":1,"breadcrumbs":3,"title":1},"149":{"body":6,"breadcrumbs":3,"title":1},"15":{"body":11,"breadcrumbs":2,"title":2},"16":{"body":13,"breadcrumbs":3,"title":3},"17":{"body":0,"breadcrumbs":2,"title":2},"18":{"body":4,"breadcrumbs":1,"title":1},"19":{"body":23,"breadcrumbs":2,"title":2},"2":{"body":2,"breadcrumbs":3,"title":3},"20":{"body":69,"breadcrumbs":2,"title":2},"21":{"body":0,"breadcrumbs":1,"title":1},"22":{"body":91,"breadcrumbs":2,"title":2},"23":{"body":39,"breadcrumbs":2,"title":2},"24":{"body":77,"breadcrumbs":2,"title":2},"25":{"body":16,"breadcrumbs":2,"title":2},"26":{"body":102,"breadcrumbs":6,"title":6},"27":{"body":24,"breadcrumbs":2,"title":2},"28":{"body":33,"breadcrumbs":3,"title":3},"29":{"body":9,"breadcrumbs":2,"title":2},"3":{"body":1,"breadcrumbs":3,"title":3},"30":{"body":9,"breadcrumbs":3,"title":3},"31":{"body":15,"breadcrumbs":3,"title":3},"32":{"body":2,"breadcrumbs":1,"title":1},"33":{"body":6,"breadcrumbs":2,"title":1},"34":{"body":2,"breadcrumbs":2,"title":1},"35":{"body":10,"breadcrumbs":2,"title":1},"36":{"body":145,"breadcrumbs":2,"title":1},"37":{"body":5,"breadcrumbs":2,"title":1},"38":{"body":5,"breadcrumbs":4,"title":2},"39":{"body":3,"breadcrumbs":3,"title":1},"4":{"body":2,"breadcrumbs":1,"title":1},"40":{"body":10,"breadcrumbs":3,"title":1},"41":{"body":123,"breadcrumbs":3,"title":1},"42":{"body":22,"breadcrumbs":3,"title":1},"43":{"body":5,"breadcrumbs":4,"title":2},"44":{"body":3,"breadcrumbs":3,"title":1},"45":{"body":10,"breadcrumbs":3,"title":1},"46":{"body":9,"breadcrumbs":3,"title":1},"47":{"body":12,"breadcrumbs":3,"title":1},"48":{"body":10,"breadcrumbs":4,"title":2},"49":{"body":3,"breadcrumbs":3,"title":1},"5":{"body":0,"breadcrumbs":2,"title":2},"50":{"body":10,"breadcrumbs":3,"title":1},"51":{"body":9,"breadcrumbs":3,"title":1},"52":{"body":14,"breadcrumbs":3,"title":1},"53":{"body":13,"breadcrumbs":4,"title":2},"54":{"body":3,"breadcrumbs":3,"title":1},"55":{"body":10,"breadcrumbs":3,"title":1},"56":{"body":9,"breadcrumbs":3,"title":1},"57":{"body":12,"breadcrumbs":3,"title":1},"58":{"body":11,"breadcrumbs":4,"title":2},"59":{"body":3,"breadcrumbs":3,"title":1},"6":{"body":11,"breadcrumbs":1,"title":1},"60":{"body":10,"breadcrumbs":3,"title":1},"61":{"body":25,"breadcrumbs":3,"title":1},"62":{"body":13,"breadcrumbs":3,"title":1},"63":{"body":14,"breadcrumbs":4,"title":2},"64":{"body":5,"breadcrumbs":3,"title":1},"65":{"body":18,"breadcrumbs":3,"title":1},"66":{"body":37,"breadcrumbs":3,"title":1},"67":{"body":13,"breadcrumbs":3,"title":1},"68":{"body":6,"breadcrumbs":3,"title":1},"69":{"body":3,"breadcrumbs":3,"title":1},"7":{"body":15,"breadcrumbs":1,"title":1},"70":{"body":10,"breadcrumbs":3,"title":1},"71":{"body":21,"breadcrumbs":3,"title":1},"72":{"body":5,"breadcrumbs":3,"title":1},"73":{"body":7,"breadcrumbs":4,"title":2},"74":{"body":3,"breadcrumbs":3,"title":1},"75":{"body":10,"breadcrumbs":3,"title":1},"76":{"body":14,"breadcrumbs":3,"title":1},"77":{"body":12,"breadcrumbs":3,"title":1},"78":{"body":11,"breadcrumbs":4,"title":2},"79":{"body":3,"breadcrumbs":3,"title":1},"8":{"body":0,"breadcrumbs":2,"title":2},"80":{"body":10,"breadcrumbs":3,"title":1},"81":{"body":14,"breadcrumbs":3,"title":1},"82":{"body":12,"breadcrumbs":3,"title":1},"83":{"body":7,"breadcrumbs":4,"title":2},"84":{"body":3,"breadcrumbs":3,"title":1},"85":{"body":10,"breadcrumbs":3,"title":1},"86":{"body":14,"breadcrumbs":3,"title":1},"87":{"body":14,"breadcrumbs":3,"title":1},"88":{"body":6,"breadcrumbs":4,"title":2},"89":{"body":4,"breadcrumbs":3,"title":1},"9":{"body":126,"breadcrumbs":6,"title":6},"90":{"body":32,"breadcrumbs":3,"title":1},"91":{"body":56,"breadcrumbs":3,"title":1},"92":{"body":5,"breadcrumbs":3,"title":1},"93":{"body":18,"breadcrumbs":3,"title":1},"94":{"body":8,"breadcrumbs":4,"title":2},"95":{"body":3,"breadcrumbs":3,"title":1},"96":{"body":10,"breadcrumbs":3,"title":1},"97":{"body":14,"breadcrumbs":3,"title":1},"98":{"body":14,"breadcrumbs":3,"title":1},"99":{"body":6,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"Join the chat at https://gitter.im/bayard-search/bayard License: MIT Bayard is a full-text search and indexing server written in Rust built on top of Tantivy that implements The Raft Consensus Algorithm ( raft-rs ) and The gRPC ( grpc-rs ). Achieves consensus across all the nodes, ensures every change made to the system is made to a quorum of nodes. Bayard makes easy for programmers to develop search applications with advanced features and high availability.","breadcrumbs":"Bayard","id":"0","title":"Bayard"},"1":{"body":"Full-text search/indexing Index replication Bringing up a cluster Command line interface is available","breadcrumbs":"Features","id":"1","title":"Features"},"10":{"body":"You can confirm current schema with the following command: $ ./bin/bayard schema | jq . You'll see the result in JSON format. The result of the above command is: [ { \"name\": \"id\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"basic\", \"tokenizer\": \"raw\" }, \"stored\": true } }, { \"name\": \"url\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"freq\", \"tokenizer\": \"default\" }, \"stored\": true } }, { \"name\": \"name\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"description\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"popularity\", \"type\": \"u64\", \"options\": { \"indexed\": true, \"fast\": \"single\", \"stored\": true } }, { \"name\": \"category\", \"type\": \"hierarchical_facet\" }, { \"name\": \"timestamp\", \"type\": \"date\", \"options\": { \"indexed\": true, \"fast\": \"single\", \"stored\": true } }\n]","breadcrumbs":"Getting schema","id":"10","title":"Getting schema"},"100":{"body":"bayard schedule [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"100","title":"USAGE"},"101":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"101","title":"FLAGS"},"102":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-c, --commit Schedule for automatic commit in a cron-like format. If not specified, use default schedule. [default: 0/10 * * * * * *]\n-m, --merge Schedule for automatic merge in a cron-like format. If not specified, use default schedule. [default: 0 0 2 * * * *]","breadcrumbs":"Reference » bayard » OPTIONS","id":"102","title":"OPTIONS"},"103":{"body":"The scheduling format is as follows: sec min hour day-of-month month day-of-week year\n* * * * * * *","breadcrumbs":"Reference » bayard » SCHEDULE FORMAT","id":"103","title":"SCHEDULE FORMAT"},"104":{"body":"To start job scheduler with default options: $ ./bin/bayard schedule To start job scheduler with options: $ ./bin/bayard schedule --commit=\"0/10 * * * * * *\" --merge=\"0 0 2 * * * *\"","breadcrumbs":"Reference » bayard » EXAMPLES","id":"104","title":"EXAMPLES"},"105":{"body":"The bayard gateway CLI starts a gateway for access the server over HTTP.","breadcrumbs":"Reference » bayard » bayard gateway","id":"105","title":"bayard gateway"},"106":{"body":"bayard gateway [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"106","title":"USAGE"},"107":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"107","title":"FLAGS"},"108":{"body":"-H, --host Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]\n-P, --port Port number. This port is used for communication via HTTP. If not specified, use the default port. [default: 8000]\n-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"108","title":"OPTIONS"},"109":{"body":"To start gateway with default options: $ ./bin/bayard gateway To start gateway with options: $ ./bin/bayard gateway --host=localhost --port=8080 --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"109","title":"EXAMPLES"},"11":{"body":"You can index document with the following command: $ ./bin/bayard put --id=1 --file=./examples/doc_1.json | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Indexing document","id":"11","title":"Indexing document"},"110":{"body":"The REST API can be used by starting the gateway with the “bayard gateway” CLI. See the next page for details on bayard gateway: bayard gateway","breadcrumbs":"Reference » REST API","id":"110","title":"REST API"},"111":{"body":"Probe API probes the server.","breadcrumbs":"Reference » APIs » Probe API","id":"111","title":"Probe API"},"112":{"body":"GET /probe","breadcrumbs":"Reference » APIs » Request","id":"112","title":"Request"},"113":{"body":"To probe a server: $ curl -X GET 'http://localhost:8000/probe'","breadcrumbs":"Reference » APIs » Examples","id":"113","title":"Examples"},"114":{"body":"Peers API shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » APIs » Peers API","id":"114","title":"Peers API"},"115":{"body":"GET /peers","breadcrumbs":"Reference » APIs » Request","id":"115","title":"Request"},"116":{"body":"To show peers of the cluster: $ curl -X GET 'http://localhost:8000/peers'","breadcrumbs":"Reference » APIs » Examples","id":"116","title":"Examples"},"117":{"body":"Metrics API shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.","breadcrumbs":"Reference » APIs » Metrics API","id":"117","title":"Metrics API"},"118":{"body":"GET /metrics","breadcrumbs":"Reference » APIs » Request","id":"118","title":"Request"},"119":{"body":"To show metrics: $ curl -X GET 'http://localhost:8000/metrics'","breadcrumbs":"Reference » APIs » Examples","id":"119","title":"Examples"},"12":{"body":"You can get document with the following command: $ ./bin/bayard get --id=1 | jq . You'll see the result in JSON format. The result of the above command is: { \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"id\": [ \"1\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1132 ], \"url\": [ \"https://github.com/bayard-search/bayard\" ]\n}","breadcrumbs":"Getting document","id":"12","title":"Getting document"},"120":{"body":"Put API puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.","breadcrumbs":"Reference » APIs » Put API","id":"120","title":"Put API"},"121":{"body":"PUT /index/docs/\nPUT /index/docs","breadcrumbs":"Reference » APIs » Request","id":"121","title":"Request"},"122":{"body":" A unique value that identifies the document in the index. If specify an existing ID, the existing document in the index is overwritten.","breadcrumbs":"Reference » APIs » Path parameters","id":"122","title":"Path parameters"},"123":{"body":" Document(s) expressed in JSON or JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"123","title":"Request body"},"124":{"body":"To put a document: $ curl -X PUT \\ --header 'Content-Type: application/json' \\ --data-binary @./examples/doc_1.json \\ 'http://localhost:8000/index/docs/1' To put documents in bulk: $ curl -X PUT \\ --header 'Content-Type: application/json' \\ --data-binary @./examples/bulk_put.jsonl \\ 'http://localhost:8000/index/docs'","breadcrumbs":"Reference » APIs » Example","id":"124","title":"Example"},"125":{"body":"Get API gets a document with the specified ID.","breadcrumbs":"Reference » APIs » Get API","id":"125","title":"Get API"},"126":{"body":"GET /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"126","title":"Request"},"127":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"127","title":"Path parameters"},"128":{"body":"To get a document: $ curl -X GET 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"128","title":"Examples"},"129":{"body":"Delete API deletes a document with the specified ID.","breadcrumbs":"Reference » APIs » Delete API","id":"129","title":"Delete API"},"13":{"body":"You can index documents in bulk with the following command: $ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Indexing documents in bulk","id":"13","title":"Indexing documents in bulk"},"130":{"body":"DELETE /index/docs/\nDELETE /index/docs","breadcrumbs":"Reference » APIs » Request","id":"130","title":"Request"},"131":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"131","title":"Path parameters"},"132":{"body":" Document(s) expressed in JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"132","title":"Request body"},"133":{"body":"To delete a document: $ curl -X DELETE 'http://localhost:8000/index/docs/1' To delete documents in bulk: $ curl -X DELETE \\ --header 'Content-Type: application/json' \\ --data-binary @./examples/bulk_delete.jsonl \\ 'http://localhost:8000/index/docs'","breadcrumbs":"Reference » APIs » Examples","id":"133","title":"Examples"},"134":{"body":"Search API searches documents from the index.","breadcrumbs":"Reference » APIs » Search API","id":"134","title":"Search API"},"135":{"body":"GET /index/search","breadcrumbs":"Reference » APIs » Request","id":"135","title":"Request"},"136":{"body":"from Start position of fetching results. If not specified, use default value. [default: 0] limit Limitation of amount that document to be returned. If not specified, use default value. [default: 10] exclude_count A flag indicating whether or not to exclude hit count in the search results. If not specified, use default value. [default: true] exclude_docs A flag indicating whether or not to exclude hit documents in the search results. If not specified, use default value. [default: true] query Query string to search the index. facet_field Hierarchical facet field name. facet_prefix Hierarchical facet field value prefix.","breadcrumbs":"Reference » APIs » Query parameters","id":"136","title":"Query parameters"},"137":{"body":"To search documents from the index: $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&exclude_count' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&exclude_docs' $ curl -X GET 'http://localhost:8000/index/search?query=search&from=0&limit=10&facet_field=category&facet_prefix=/language&facet_prefix=/category/search'","breadcrumbs":"Reference » APIs » Example","id":"137","title":"Example"},"138":{"body":"Commit API commits updates made to the index.","breadcrumbs":"Reference » APIs » Commit API","id":"138","title":"Commit API"},"139":{"body":"GET /index/commit","breadcrumbs":"Reference » APIs » Request","id":"139","title":"Request"},"14":{"body":"You can search documents with the following command: $ ./bin/bayard search --facet-field=category --facet-prefix=/category/search --facet-prefix=/language description:rust | jq . You'll see the result in JSON format. The result of the above command is: { \"count\": 2, \"docs\": [ { \"fields\": { \"category\": [ \"/category/search/library\", \"/language/rust\" ], \"description\": [ \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\" ], \"id\": [ \"8\" ], \"name\": [ \"Tantivy\" ], \"popularity\": [ 3100 ], \"url\": [ \"https://github.com/tantivy-search/tantivy\" ] }, \"score\": 1.5722498 }, { \"fields\": { \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"id\": [ \"1\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1132 ], \"url\": [ \"https://github.com/bayard-search/bayard\" ] }, \"score\": 1.5331805 } ], \"facet\": { \"category\": { \"/category/search/server\": 1, \"/category/search/library\": 1, \"/language/rust\": 2 } }\n}","breadcrumbs":"Searching documents","id":"14","title":"Searching documents"},"140":{"body":"To commit an index: $ curl -X GET 'http://localhost:8000/index/commit'","breadcrumbs":"Reference » APIs » Example","id":"140","title":"Example"},"141":{"body":"Rollback API rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » APIs » Rollback API","id":"141","title":"Rollback API"},"142":{"body":"GET /index/rollback","breadcrumbs":"Reference » APIs » Request","id":"142","title":"Request"},"143":{"body":"To rollback an index: $ curl -X GET 'http://localhost:8000/index/rollback'","breadcrumbs":"Reference » APIs » Examples","id":"143","title":"Examples"},"144":{"body":"Merge API merges fragmented segments in the index.","breadcrumbs":"Reference » APIs » Merge API","id":"144","title":"Merge API"},"145":{"body":"GET /index/merge","breadcrumbs":"Reference » APIs » Request","id":"145","title":"Request"},"146":{"body":"To merge segments in the index: $ curl -X GET 'http://localhost:8000/index/merge'","breadcrumbs":"Reference » APIs » Examples","id":"146","title":"Examples"},"147":{"body":"Schema API shows the index schema that the server applied.","breadcrumbs":"Reference » APIs » Schema API","id":"147","title":"Schema API"},"148":{"body":"GET /index/schema","breadcrumbs":"Reference » APIs » Request","id":"148","title":"Request"},"149":{"body":"To show the index schema: $ curl -X GET 'http://localhost:8000/index/schema'","breadcrumbs":"Reference » APIs » Examples","id":"149","title":"Examples"},"15":{"body":"You can delete document with the following command: $ ./bin/bayard delete --id=1 | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Deleting document","id":"15","title":"Deleting document"},"16":{"body":"You can delete documents in bulk with the following command: $ ./bin/bayard delete --bulk --file=./examples/bulk_delete.jsonl | jq .\n$ ./bin/bayard commit | jq .","breadcrumbs":"Deleting documents in bulk","id":"16","title":"Deleting documents in bulk"},"17":{"body":"","breadcrumbs":"Designing schema","id":"17","title":"Designing schema"},"18":{"body":"Schema is a collection of field entries.","breadcrumbs":"Schema","id":"18","title":"Schema"},"19":{"body":"A field entry represents a field and its configuration. name A field name. type A field type. See Field type section. options Options describing how the field should be indexed. See Options section.","breadcrumbs":"Field entry","id":"19","title":"Field entry"},"2":{"body":"https://github.com/bayard-search/bayard","breadcrumbs":"Source code repository","id":"2","title":"Source code repository"},"20":{"body":"A field type describes the type of a field as well as how it should be handled. \"text\" String field type configuration. It can specify text options . \"u64\" Unsigned 64-bits integers field type configuration. It can specify numeric options . \"i64\" Signed 64-bits integers 64 field type configuration. It can specify numeric options . \"f64\" 64-bits float 64 field type configuration. It can specify numeric options . \"date\" Signed 64-bits Date 64 field type configuration. It can specify numeric options . \"hierarchical_facet\" Hierarchical Facet. \"bytes\" Bytes. (one per document)","breadcrumbs":"Field type","id":"20","title":"Field type"},"21":{"body":"","breadcrumbs":"Options","id":"21","title":"Options"},"22":{"body":"Configuration defining indexing for a text field. It defines the amount of information that should be stored about the presence of a term in a document. Essentially, should be store the term frequency and/or the positions, the name of the tokenizer that should be used to process the field. indexing record \"basic\" Records only the document IDs. \"freq\" Records the document ids as well as the term frequency. The term frequency can help giving better scoring of the documents. \"position\" Records the document id, the term frequency and the positions of the occurences in the document. Positions are required to run phrase queries. tokenizer \"default\" Chops the text on according to whitespace and punctuation, removes tokens that are too long, and lowercases tokens. \"raw\" Does not process nor tokenize the text. \"en_stem\" Like default, but also applies stemming on the resulting tokens. Stemming can improve the recall of your search engine. stored true Text is to be stored. false Text is not to be stored.","breadcrumbs":"Text options","id":"22","title":"Text options"},"23":{"body":"Configuration defining indexing for a numeric field. indexed true Value is to be indexed. false Value is not to be indexed. stored true Value is to be stored. false Value is not to be stored. fast: \"single\" The document must have exactly one value associated to the document. \"multi\" The document can have any number of values associated to the document. This is more memory and CPU expensive than the SingleValue solution.","breadcrumbs":"Numeric options","id":"23","title":"Numeric options"},"24":{"body":"Here is a sample schema: [ { \"name\": \"id\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"basic\", \"tokenizer\": \"raw\" }, \"stored\": true } }, { \"name\": \"url\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"freq\", \"tokenizer\": \"default\" }, \"stored\": true } }, { \"name\": \"name\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"description\", \"type\": \"text\", \"options\": { \"indexing\": { \"record\": \"position\", \"tokenizer\": \"en_stem\" }, \"stored\": true } }, { \"name\": \"popularity\", \"type\": \"u64\", \"options\": { \"indexed\": true, \"stored\": true, \"fast\": \"single\" } }, { \"name\": \"category\", \"type\": \"hierarchical_facet\" }, { \"name\": \"timestamp\", \"type\": \"date\", \"options\": { \"indexed\": true, \"stored\": true, \"fast\": \"single\" } }\n]","breadcrumbs":"Example schema","id":"24","title":"Example schema"},"25":{"body":"Bayard supports booting in cluster mode by itself. No external software is required, and you can easily bring up a cluster by adding a command flags.","breadcrumbs":"Cluster mode","id":"25","title":"Cluster mode"},"26":{"body":"Running in standalone is not fault tolerant. If you need to improve fault tolerance, start servers in cluster mode. You can start servers in cluster mode with the following command: $ ./bin/bayard serve \\ --id=1 \\ --host=0.0.0.0 \\ --port=5001 \\ --data-directory=./data/1 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id $ ./bin/bayard serve \\ --id=2 \\ --host=0.0.0.0 \\ --port=5002 \\ --peers=\"1=0.0.0.0:5001\" \\ --data-directory=./data/2 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id $ ./bin/bayard serve \\ --id=3 \\ --host=0.0.0.0 \\ --port=5003 \\ --peers=\"1=0.0.0.0:5001,2=0.0.0.0:5002\" \\ --data-directory=./data/3 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id The above commands run servers on the same host, so each server must listen on a different port. This would not be necessary if each server runs on a different host. Recommend 3 or more odd number of servers in the cluster to avoid split-brain. When deploying to a single host, if that host goes down due to hardware failure, all of the servers in the cluster will be stopped, so recommend deploying to a different host.","breadcrumbs":"Starting in cluster mode (3-node cluster)","id":"26","title":"Starting in cluster mode (3-node cluster)"},"27":{"body":"You can check the peers in the cluster with the following command: $ ./bin/bayard peers --servers localhost:5001 | jq . You'll see the result in JSON format. The result of the above command is: { \"1\": \"0.0.0.0:5001\", \"2\": \"0.0.0.0:5002\", \"3\": \"0.0.0.0:5003\"\n}","breadcrumbs":"Cluster peers","id":"27","title":"Cluster peers"},"28":{"body":"If one of the servers in a cluster goes down due to a hardware failure and raft logs and metadata is lost, that server cannot join the cluster again. If you want the server to join the cluster again, you must remove it from the cluster. The following command deletes the server with id=3 from the cluster: $ ./bin/bayard leave \\ --servers=127.0.0.1:5001 \\ --id=3","breadcrumbs":"Remove a server from a cluster","id":"28","title":"Remove a server from a cluster"},"29":{"body":"See the available Docker container image version at the following URL: https://hub.docker.com/r/bayardsearch/bayard/tags/","breadcrumbs":"Running on Docker","id":"29","title":"Running on Docker"},"3":{"body":"https://hub.docker.com/r/bayardsearch/bayard","breadcrumbs":"Docker container repository","id":"3","title":"Docker container repository"},"30":{"body":"You can pull the Docker container image with the following command: $ docker pull bayardsearch/bayard:latest","breadcrumbs":"Pulling Docker container","id":"30","title":"Pulling Docker container"},"31":{"body":"You can run the Docker container image with the following command: $ docker run --rm --name bayard \\ -p 5000:5000 \\ bayardsearch/bayard:latest serve","breadcrumbs":"Running Docker container","id":"31","title":"Running Docker container"},"32":{"body":"bayard APIs","breadcrumbs":"Reference","id":"32","title":"Reference"},"33":{"body":"The bayard CLI manages server, cluster and index.","breadcrumbs":"Reference » bayard","id":"33","title":"bayard"},"34":{"body":"bayard ","breadcrumbs":"Reference » USAGE","id":"34","title":"USAGE"},"35":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » FLAGS","id":"35","title":"FLAGS"},"36":{"body":"serve The `bayard serve` CLI starts the server.\nprobe The `bayard probe` CLI probes the server.\npeers The `bayard peers` CLI shows the peer addresses of the cluster that the specified server is joining.\nmetrics The `bayard metrics` CLI shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.\nleave The `bayard leave` CLI removes the server with the specified ID from the cluster that the specified server is joining.\nput The `bayard put` CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.\nget The `bayard get` CLI gets a document with the specified ID.\ndelete The `bayard delete` CLI deletes a document with the specified ID.\ncommit The `bayard commit` CLI commits updates made to the index.\nrollback The `bayard rollback` CLI rolls back any updates made to the index to the last committed state.\nmerge The `bayard merge` CLI merges fragmented segments in the index.\nsearch The `bayard search` CLI searches documents from the index.\nschema The `bayard schema` CLI shows the index schema that the server applied.\nschedule The `bayard schedule` CLI starts the job scheduler.\ngateway The `bayard gateway` CLI starts a gateway for access the server over HTTP.\nhelp Prints this message or the help of the given subcommand(s)","breadcrumbs":"Reference » SUBCOMMANDS","id":"36","title":"SUBCOMMANDS"},"37":{"body":"To print version information: $ ./bin/bayard -v","breadcrumbs":"Reference » EXAMPLES","id":"37","title":"EXAMPLES"},"38":{"body":"The bayard serve CLI starts the server.","breadcrumbs":"Reference » bayard » bayard serve","id":"38","title":"bayard serve"},"39":{"body":"bayard serve [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"39","title":"USAGE"},"4":{"body":"https://bayard-search.github.io/bayard/","breadcrumbs":"Documents","id":"4","title":"Documents"},"40":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"40","title":"FLAGS"},"41":{"body":"-i, --id Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default ID. [default: 1]\n-H, --host Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]\n-P, --port Port number. This port is used for communication via gRPC. If not specified, use the default port. [default: 5000]\n-p, --peers ... Server ID and addresses in an existing cluster separated by \",\". If specified, the server will join the cluster.\n-d, --data-directory Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory. [default: ./data]\n-s, --schema-file Schema file. Must specify An existing file name. If not specified, use the default schema file. [default: ./etc/schema.json]\n-u, --unique-key-field-name Unique key field name. Specify the field name to be treated as a unique key in the field defined in the schema. If not specified, use the default unique key field name. [default: id]","breadcrumbs":"Reference » bayard » OPTIONS","id":"41","title":"OPTIONS"},"42":{"body":"To start a server with default options: $ ./bin/bayard serve To start a server with options: $ ./bin/bayard serve \\ --id=1 \\ --host=0.0.0.0 \\ --port=5001 \\ --data-directory=./data/1 \\ --schema-file=./etc/schema.json \\ --unique-key-field-name=id","breadcrumbs":"Reference » bayard » EXAMPLES","id":"42","title":"EXAMPLES"},"43":{"body":"The bayard probe CLI probes the server.","breadcrumbs":"Reference » bayard » bayard probe","id":"43","title":"bayard probe"},"44":{"body":"bayard probe [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"44","title":"USAGE"},"45":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"45","title":"FLAGS"},"46":{"body":"-s, --server Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"46","title":"OPTIONS"},"47":{"body":"To probe a server with default options: $ ./bin/bayard probe To probe a server with options: $ ./bin/bayard probe --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"47","title":"EXAMPLES"},"48":{"body":"The bayard peers CLI shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard peers","id":"48","title":"bayard peers"},"49":{"body":"bayard peers [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"49","title":"USAGE"},"5":{"body":"","breadcrumbs":"Building Bayard","id":"5","title":"Building Bayard"},"50":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"50","title":"FLAGS"},"51":{"body":"-s, --server Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"51","title":"OPTIONS"},"52":{"body":"To show peers of the cluster with default options: $ ./bin/bayard peers To show peers of the cluster with options: $ ./bin/bayard peers --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"52","title":"EXAMPLES"},"53":{"body":"The bayard metrics CLI shows the server metrics of the specified server. The metrics are output in Prometheus exposition format.","breadcrumbs":"Reference » bayard » bayard metrics","id":"53","title":"bayard metrics"},"54":{"body":"bayard metrics [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"54","title":"USAGE"},"55":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"55","title":"FLAGS"},"56":{"body":"-s, --server IP:PORT Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"56","title":"OPTIONS"},"57":{"body":"To show metrics with default options: $ ./bin/bayard metrics To show metrics with options: $ ./bin/bayard metrics --server=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"57","title":"EXAMPLES"},"58":{"body":"The bayard leave CLI removes the server with the specified ID from the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard leave","id":"58","title":"bayard leave"},"59":{"body":"bayard leave [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"59","title":"USAGE"},"6":{"body":"The following products are required to build Bayrad: Rust >= 1.39.0 make >= 3.81 protoc >= 3.9.2","breadcrumbs":"Requirements","id":"6","title":"Requirements"},"60":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"60","title":"FLAGS"},"61":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-i, --id Node ID to be removed from the cluster that specified server is joining. [default: 1]","breadcrumbs":"Reference » bayard » OPTIONS","id":"61","title":"OPTIONS"},"62":{"body":"To remove a server with default options: $ ./bin/bayard leave To probe a server with options: $ ./bin/bayard leave --servers=127.0.0.1:5001 --id=3","breadcrumbs":"Reference » bayard » EXAMPLES","id":"62","title":"EXAMPLES"},"63":{"body":"The bayard put CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.","breadcrumbs":"Reference » bayard » bayard put","id":"63","title":"bayard put"},"64":{"body":"bayard put [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"64","title":"USAGE"},"65":{"body":"-b, --bulk A flag indicating whether or not to put documents in bulk.\n-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"65","title":"FLAGS"},"66":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-i, --id A unique value that identifies the document in the index. If specified, the existing document ID in the document is overwritten.\n-f, --file File path that document(s) expressed in JSON or JSONL format.","breadcrumbs":"Reference » bayard » OPTIONS","id":"66","title":"OPTIONS"},"67":{"body":"To put a document: $ ./bin/bayard put --id=1 --file=./examples/doc_1.json To put documents in bulk: $ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl","breadcrumbs":"Reference » bayard » EXAMPLES","id":"67","title":"EXAMPLES"},"68":{"body":"The bayard get CLI gets a document with the specified ID.","breadcrumbs":"Reference » bayard » bayard get","id":"68","title":"bayard get"},"69":{"body":"bayard get [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"69","title":"USAGE"},"7":{"body":"Build Bayard with the following command: $ make build When the build is successful, the binary file is output to the following directory: $ ls ./bin","breadcrumbs":"Build","id":"7","title":"Build"},"70":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"70","title":"FLAGS"},"71":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-i, --id A unique value that identifies the document in the index.","breadcrumbs":"Reference » bayard » OPTIONS","id":"71","title":"OPTIONS"},"72":{"body":"To get a document with default options: $ ./bin/bayard get --id=1","breadcrumbs":"Reference » bayard » EXAMPLES","id":"72","title":"EXAMPLES"},"73":{"body":"The bayard commit CLI commits updates made to the index.","breadcrumbs":"Reference » bayard » bayard commit","id":"73","title":"bayard commit"},"74":{"body":"bayard commit [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"74","title":"USAGE"},"75":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"75","title":"FLAGS"},"76":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"76","title":"OPTIONS"},"77":{"body":"To commit an index with default options: $ ./bin/bayard commit To commit an index with options: $ ./bin/bayard commit --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"77","title":"EXAMPLES"},"78":{"body":"The bayard rollback CLI rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » bayard » bayard rollback","id":"78","title":"bayard rollback"},"79":{"body":"bayard rollback [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"79","title":"USAGE"},"8":{"body":"","breadcrumbs":"Getting started","id":"8","title":"Getting started"},"80":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"80","title":"FLAGS"},"81":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"81","title":"OPTIONS"},"82":{"body":"To rollback an index with default options: $ ./bin/bayard rollback To rollback an index with options: $ ./bin/bayard rollback --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"82","title":"EXAMPLES"},"83":{"body":"The bayard merge CLI merges fragmented segments in the index.","breadcrumbs":"Reference » bayard » bayard merge","id":"83","title":"bayard merge"},"84":{"body":"bayard merge [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"84","title":"USAGE"},"85":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"85","title":"FLAGS"},"86":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"86","title":"OPTIONS"},"87":{"body":"To merge segments in the index with default options: $ ./bin/bayard merge To merge segments in the index with options: $ ./bin/bayard merge --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"87","title":"EXAMPLES"},"88":{"body":"The bayard search CLI searches documents from the index.","breadcrumbs":"Reference » bayard » bayard search","id":"88","title":"bayard search"},"89":{"body":"bayard search [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"89","title":"USAGE"},"9":{"body":"Running node in standalone mode is easy. You can start server with the following command: $ ./bin/bayard serve You'll see a startup message like following: [2019-11-27T00:30:45Z INFO bayard::server::server src/server/server.rs:119] listening on 0.0.0.0:5000\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:723] became follower at term 0\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:295] newRaft [peers: [1], term: 0, commit: 0, applied: 0, last_index: 0, last_term: 0]\n[2019-11-27T00:30:45Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:723] became follower at term 1 [...] [2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:1094] is starting a new election at term 1\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:743] became candidate at term 2\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:858] received MsgRequestVoteResponse from 1 at term 2\n[2019-11-27T00:30:48Z INFO raft::raft /Users/m-osuka/.cargo/registry/src/github.com-1ecc6299db9ec823/raft-0.4.3/src/raft.rs:793] became leader at term 2","breadcrumbs":"Starting in standalone mode (Single node cluster)","id":"9","title":"Starting in standalone mode (Single node cluster)"},"90":{"body":"-c, --exclude-count A flag indicating whether or not to exclude hit count in the search results.\n-d, --exclude-docs A flag indicating whether or not to exclude hit documents in the search results\n-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"90","title":"FLAGS"},"91":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]\n-f, --from Start position of fetching results. If not specified, use default value. [default: 0]\n-l, --limit Limitation of amount that document to be returned. If not specified, use default value. [default: 10]\n-F, --facet-field Hierarchical facet field name. [default: ]\n-V, --facet-prefix ... Hierarchical facet field value prefix.","breadcrumbs":"Reference » bayard » OPTIONS","id":"91","title":"OPTIONS"},"92":{"body":" Query string to search the index.","breadcrumbs":"Reference » bayard » ARGS","id":"92","title":"ARGS"},"93":{"body":"To search documents from the index with default options: $ ./bin/bayard search text:\"rust\" To search documents from the index with options: $ ./bin/bayard search --servers=127.0.0.1:5001 --from=10 --limit=20 text:\"rust\"","breadcrumbs":"Reference » bayard » EXAMPLES","id":"93","title":"EXAMPLES"},"94":{"body":"The bayard schema CLI shows the index schema that the server applied.","breadcrumbs":"Reference » bayard » bayard schema","id":"94","title":"bayard schema"},"95":{"body":"bayard schema [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"95","title":"USAGE"},"96":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"96","title":"FLAGS"},"97":{"body":"-s, --servers ... Server addresses in an existing cluster separated by \",\". If not specified, use default servers. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"97","title":"OPTIONS"},"98":{"body":"To show the index schema with default options: $ ./bin/bayard schema To show the index schema with options: $ ./bin/bayard schema --servers=127.0.0.1:5001","breadcrumbs":"Reference » bayard » EXAMPLES","id":"98","title":"EXAMPLES"},"99":{"body":"The bayard schedule CLI starts the job scheduler.","breadcrumbs":"Reference » bayard » bayard schedule","id":"99","title":"bayard schedule"}},"length":150,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"3":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{"9":{"4":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"5":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"8":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"136":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.0}}},"1":{".":{"3":{"9":{".":{"0":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"1":{"8":{"0":{"5":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"4":{"9":{"8":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}},"1":{"3":{"2":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":2.8284271247461903}}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"0":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"27":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":2.0}},"e":{"c":{"c":{"6":{"2":{"9":{"9":{"d":{"b":{"9":{"df":0,"docs":{},"e":{"c":{"8":{"2":{"3":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":1,"docs":{"9":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"3":{"0":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":2.0}}}},"8":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"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":5,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"3":{".":{"8":{"1":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}},"5":{"0":{"0":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"20":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"36":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"114":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":1,"docs":{"25":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"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":{"0":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"32":{"tf":1.0}}},"p":{"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":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"147":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":40,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":3.872983346207417},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":26,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"7":{"tf":1.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"20":{"tf":2.0}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":6,"docs":{"124":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"16":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"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":{"14":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"102":{"tf":1.0},"90":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":3.872983346207417},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"/":{"1":{"0":{"df":1,"docs":{"104":{"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":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":2.449489742783178},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"136":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"41":{"tf":3.4641016151377544},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"91":{"tf":2.6457513110645907},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"28":{"tf":1.0},"36":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"41":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"i":{"d":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"90":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}},"df":36,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"36":{"tf":2.23606797749979},"4":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"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":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"90":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"f":{"6":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"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":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}},"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":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":4,"docs":{"136":{"tf":1.4142135623730951},"14":{"tf":2.0},"20":{"tf":1.0},"91":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"66":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.6457513110645907},"20":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"=":{".":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"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":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"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":{}},"df":3,"docs":{"41":{"tf":2.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"136":{"tf":1.4142135623730951},"25":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"36":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":2.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"=":{"1":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0},"36":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"41":{"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":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}}}},"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":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"108":{"tf":2.0},"26":{"tf":2.23606797749979},"41":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"124":{"tf":1.0},"133":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"?":{"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"=":{"0":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"0":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"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":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"&":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":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":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"116":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"105":{"tf":1.0},"108":{"tf":1.0},"36":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"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":{},"i":{"df":0,"docs":{},"m":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"0":{"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":{"b":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"20":{"tf":1.0}}},"df":0,"docs":{}},"d":{"=":{"1":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"62":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":17,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"36":{"tf":2.23606797749979},"41":{"tf":2.6457513110645907},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"22":{"tf":1.0},"26":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"121":{"tf":1.0},"130":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"41":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":2.8284271247461903}},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"36":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"28":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"q":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"27":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"26":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"2":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"0":{"0":{"1":{"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":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"41":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"a":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"138":{"tf":1.0},"141":{"tf":1.0},"36":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"36":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"36":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":1.0},"57":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"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":1,"docs":{"9":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"10":{"tf":2.8284271247461903},"108":{"tf":1.0},"12":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"31":{"tf":1.0},"41":{"tf":2.449489742783178},"91":{"tf":1.0}}}}},"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":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":4,"docs":{"120":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":48,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":2.449489742783178},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"36":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"66":{"tf":1.0}}}}},"df":3,"docs":{"108":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"27":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":2.0},"9":{"tf":1.0}},"s":{"=":{"\"":{"1":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"1":{",":{"2":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"20":{"tf":1.0}}}},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"1":{"df":2,"docs":{"26":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"108":{"tf":2.23606797749979},"26":{"tf":1.0},"41":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"136":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"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":{"14":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"47":{"tf":2.0},"62":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":10,"docs":{"11":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"124":{"tf":2.0},"13":{"tf":1.0},"36":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.7320508075688772},"22":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.0}}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"d":{"df":3,"docs":{"10":{"tf":2.0},"22":{"tf":2.0},"24":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"36":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"82":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"36":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":13,"docs":{"10":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":14,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"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":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"14":{"tf":2.23606797749979},"22":{"tf":1.0},"36":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"103":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"9":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"36":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"0":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"33":{"tf":1.0},"36":{"tf":3.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":8,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"36":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"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":25,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.0},"20":{"tf":2.23606797749979},"36":{"tf":2.8284271247461903},"41":{"tf":3.3166247903554},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"9":{"df":1,"docs":{"9":{"tf":1.0}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"136":{"tf":1.0},"26":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.449489742783178},"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"136":{"tf":1.0},"20":{"tf":1.0},"92":{"tf":1.0}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"36":{"tf":1.0}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"x":{"df":0,"docs":{},"t":{":":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"24":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":2.0},"22":{"tf":2.449489742783178},"24":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"p":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"136":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.8284271247461903}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.6457513110645907},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"24":{"tf":2.6457513110645907}}}}}},"u":{"6":{"4":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"26":{"tf":1.7320508075688772},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"41":{"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":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"36":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":14,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"110":{"tf":1.0},"136":{"tf":2.0},"22":{"tf":1.0},"41":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"66":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}}}}},"x":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"3":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"3":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"0":{"9":{"4":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"5":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"3":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"8":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"136":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.0}}},"1":{".":{"3":{"9":{".":{"0":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"1":{"8":{"0":{"5":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"4":{"9":{"8":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}},"1":{"3":{"2":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"9":{"tf":2.8284271247461903}}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"0":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"27":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":2.0}},"e":{"c":{"c":{"6":{"2":{"9":{"9":{"d":{"b":{"9":{"df":0,"docs":{},"e":{"c":{"8":{"2":{"3":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":1,"docs":{"9":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"0":{":":{"3":{"0":{":":{"4":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"tf":2.0}}}},"8":{"df":0,"docs":{},"z":{"df":1,"docs":{"9":{"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":5,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"9":{"tf":1.7320508075688772}}},"3":{".":{"8":{"1":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}},"5":{"0":{"0":{"0":{":":{"5":{"0":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"20":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"36":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":2.0},"114":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.0},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":1,"docs":{"25":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.4142135623730951}}}}},"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":{"0":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"91":{"tf":1.0}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":41,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.0},"32":{"tf":1.0}}},"p":{"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":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"147":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":84,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":3.872983346207417},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"d":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":26,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"7":{"tf":1.0}}}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":1,"docs":{"20":{"tf":2.0}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":6,"docs":{"124":{"tf":1.0},"13":{"tf":2.0},"133":{"tf":1.0},"16":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"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":{"14":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"102":{"tf":1.0},"90":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"22":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":17,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":3.872983346207417},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":2.6457513110645907},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"/":{"1":{"0":{"df":1,"docs":{"104":{"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":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":14,"docs":{"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":2.0},"140":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":2.0},"73":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":2,"docs":{"41":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":2.449489742783178},"104":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"136":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"41":{"tf":3.4641016151377544},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"91":{"tf":2.6457513110645907},"93":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.0},"15":{"tf":2.0},"16":{"tf":2.0},"28":{"tf":1.0},"36":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"41":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"i":{"d":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"90":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":2.0},"31":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}},"df":36,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"36":{"tf":2.23606797749979},"4":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"22":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"18":{"tf":1.0},"19":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"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":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"90":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"f":{"6":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"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":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}},"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":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":4,"docs":{"136":{"tf":1.4142135623730951},"14":{"tf":2.0},"20":{"tf":1.0},"91":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"66":{"tf":1.0},"91":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.8284271247461903},"20":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"=":{".":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"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":0,"docs":{},"l":{"df":2,"docs":{"13":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"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":{}},"df":3,"docs":{"41":{"tf":2.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"25":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"9":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"117":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.0},"36":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":2.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"m":{"=":{"1":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"105":{"tf":2.0},"106":{"tf":1.0},"109":{"tf":2.0},"110":{"tf":2.0},"36":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"125":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"41":{"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":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.4142135623730951},"133":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}}}},"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":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"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":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"108":{"tf":2.0},"26":{"tf":2.23606797749979},"41":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"124":{"tf":1.0},"133":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"?":{"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"&":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"=":{"0":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"1":{"0":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"a":{"c":{"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":{"=":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"&":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"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":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":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"116":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"105":{"tf":1.0},"108":{"tf":1.0},"36":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"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":{},"i":{"df":0,"docs":{},"m":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"0":{"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":{"b":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"20":{"tf":1.0}}},"df":0,"docs":{}},"d":{"=":{"1":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"62":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":17,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"36":{"tf":2.23606797749979},"41":{"tf":2.6457513110645907},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"22":{"tf":1.0},"26":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"121":{"tf":1.0},"130":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"41":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":2.8284271247461903}},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"22":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"36":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"28":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"q":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"27":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":3,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"66":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"26":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"2":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"0":{"0":{"1":{"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":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"41":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"22":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"7":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"a":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"138":{"tf":1.0},"141":{"tf":1.0},"36":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"102":{"tf":1.4142135623730951},"144":{"tf":2.0},"146":{"tf":1.0},"36":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"117":{"tf":2.23606797749979},"118":{"tf":1.0},"119":{"tf":1.0},"36":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}},"s":{"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"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":1,"docs":{"9":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"10":{"tf":2.8284271247461903},"108":{"tf":1.0},"12":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"31":{"tf":1.0},"41":{"tf":2.449489742783178},"91":{"tf":1.0}}}}},"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":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":4,"docs":{"120":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.7320508075688772},"41":{"tf":1.0}}}}}}},"o":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":48,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"20":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.449489742783178},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"a":{"/":{".":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"36":{"tf":1.0}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"36":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"110":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}},"df":3,"docs":{"108":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"27":{"tf":2.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":2.0},"9":{"tf":1.0}},"s":{"=":{"\"":{"1":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"1":{",":{"2":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"5":{"0":{"0":{"2":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"20":{"tf":1.0}}}},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"1":{"df":2,"docs":{"26":{"tf":1.0},"42":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"108":{"tf":2.23606797749979},"26":{"tf":1.0},"41":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"136":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"14":{"tf":1.0}}}},"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":{"14":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":8,"docs":{"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"36":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.0},"47":{"tf":2.0},"62":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":3,"docs":{"117":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":2.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":10,"docs":{"11":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"124":{"tf":2.0},"13":{"tf":1.0},"36":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":2.0},"22":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"0":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.0}}}},"w":{"df":3,"docs":{"10":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"r":{"d":{"df":3,"docs":{"10":{"tf":2.0},"22":{"tf":2.0},"24":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":118,"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.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.0},"91":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"36":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"6":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"26":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"36":{"tf":1.7320508075688772},"99":{"tf":2.0}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":13,"docs":{"10":{"tf":2.0},"147":{"tf":2.0},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0},"98":{"tf":2.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"14":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":14,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"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":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"14":{"tf":2.449489742783178},"22":{"tf":1.0},"36":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"103":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"9":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"144":{"tf":1.0},"146":{"tf":1.0},"36":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"41":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":3,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"0":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":3.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{"df":8,"docs":{"109":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"36":{"tf":1.7320508075688772},"48":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"9":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":25,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.0},"20":{"tf":2.23606797749979},"36":{"tf":2.8284271247461903},"41":{"tf":3.3166247903554},"48":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"1":{"9":{"df":1,"docs":{"9":{"tf":1.0}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"136":{"tf":1.0},"26":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"91":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.449489742783178},"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"24":{"tf":2.449489742783178},"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"136":{"tf":1.0},"20":{"tf":1.0},"92":{"tf":1.0}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"36":{"tf":1.0}}},"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"22":{"tf":2.23606797749979},"9":{"tf":2.6457513110645907}}}},"x":{"df":0,"docs":{},"t":{":":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"24":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"24":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":2.0},"22":{"tf":2.449489742783178},"24":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"p":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"136":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.8284271247461903}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"10":{"tf":2.6457513110645907},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":3.0},"24":{"tf":2.6457513110645907}}}}}},"u":{"6":{"4":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"26":{"tf":1.7320508075688772},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"41":{"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":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"138":{"tf":1.0},"141":{"tf":1.0},"36":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"24":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":14,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":2.0},"110":{"tf":1.0},"136":{"tf":2.0},"22":{"tf":1.0},"41":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.7320508075688772},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"66":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"103":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}}}}}}}},"x":{"df":11,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":2.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"title":{"root":{"3":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":12,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":17,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"129":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"11":{"tf":1.0},"13":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"144":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"117":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"122":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"111":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}},"t":{"df":2,"docs":{"120":{"tf":1.0},"63":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.0},"3":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"29":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"10":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"134":{"tf":1.0},"14":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"38":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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/docs_src/getting_started.md b/docs_src/getting_started.md index 5d51bdc..7c2248e 100644 --- a/docs_src/getting_started.md +++ b/docs_src/getting_started.md @@ -107,97 +107,10 @@ You'll see the result in JSON format. The result of the above command is: ## Indexing document -You can index documents with the following command: +You can index document with the following command: ```text -$ ./bin/bayard put 1 '{ - "url": "https://github.com/bayard-search/bayard", - "name": "Bayard", - "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.", - "popularity": 1152, - "category": ["/category/search/server", "/language/rust"], - "timestamp": "2019-12-19T10:41:00+09:00" -}' | jq . -$ ./bin/bayard put 2 '{ - "url": "https://lucene.apache.org/solr/", - "name": "Apache Solr", - "description": "Solr is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more.", - "popularity": 3135, - "category": ["/category/search/server", "/language/java"], - "timestamp": "2019-12-19T14:08:00+09:00" -}' | jq . -$ ./bin/bayard put 3 '{ - "url": "https://www.elastic.co/products/elasticsearch", - "name": "Elasticsearch", - "description": "Elasticsearch is a distributed, open source search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured.", - "popularity": 46054, - "category": ["/category/search/server", "/language/java"], - "timestamp": "2019-12-19T08:19:00+09:00" -}' | jq . -$ ./bin/bayard put 4 '{ - "url": "https://github.com/mosuka/blast", - "name": "Blast", - "description": "Blast is a full text search and indexing server, written in Go, built on top of Bleve.", - "popularity": 654, - "category": ["/category/search/server", "/language/go"], - "timestamp": "2019-10-18T19:50:00+09:00" -}' | jq . -$ ./bin/bayard put 5 '{ - "url": "https://github.com/go-ego/riot", - "name": "Riot", - "description": "Riot is Go Open Source, Distributed, Simple and efficient full text search engine.", - "popularity": 4948, - "category": ["/category/search/server", "/language/go"], - "timestamp": "2019-12-16T07:12:00+09:00" -}' | jq . -$ ./bin/bayard put 6 '{ - "url": "https://github.com/toshi-search/Toshi", - "name": "Toshi", - "description": "Toshi is meant to be a full-text search engine similar to Elasticsearch. Toshi strives to be to Elasticsearch what Tantivy is to Lucene.", - "popularity": 2448, - "category": ["/category/search/server", "/language/rust"], - "timestamp": "2019-12-02T04:00:00+09:00" -}' | jq . -$ ./bin/bayard put 7 '{ - "url": "https://github.com/valeriansaliou/sonic", - "name": "Sonic", - "description": "Sonic is a fast, lightweight and schema-less search backend.", - "popularity": 7895, - "category": ["/category/search/server", "/language/rust"], - "timestamp": "2019-12-10T23:13:00+09:00" -}' | jq . -$ ./bin/bayard put 8 '{ - "url": "https://github.com/tantivy-search/tantivy", - "name": "Tantivy", - "description": "Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.", - "popularity": 3142, - "category": ["/category/search/library", "/language/rust"], - "timestamp": "2019-12-19T10:07:00+09:00" -}' | jq . -$ ./bin/bayard put 9 '{ - "url": "https://lucene.apache.org/", - "name": "Lucene", - "description": "Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java.", - "popularity": 3135, - "category": ["/category/search/library", "/language/java"], - "timestamp": "2019-12-19T14:08:00+09:00" -}' | jq . -$ ./bin/bayard put 10 '{ - "url": "https://blevesearch.com/", - "name": "Bleve", - "description": "Bleve is a modern text indexing library for go.", - "popularity": 6211, - "category": ["/category/search/library", "/language/go"], - "timestamp": "2019-10-30T16:13:00+09:00" -}' | jq . -$ ./bin/bayard put 11 '{ - "url": "https://bitbucket.org/mchaput/whoosh/wiki/Home", - "name": "Whoosh", - "description": "Whoosh is a fast, pure Python search engine library.", - "popularity": 0, - "category": ["/category/search/library", "/language/python"], - "timestamp": "2019-10-08T05:30:26+09:00" -}' | jq . +$ ./bin/bayard put --id=1 --file=./examples/doc_1.json | jq . $ ./bin/bayard commit | jq . ``` @@ -206,7 +119,7 @@ $ ./bin/bayard commit | jq . You can get document with the following command: ```text -$ ./bin/bayard get 1 | jq . +$ ./bin/bayard get --id=1 | jq . ``` You'll see the result in JSON format. The result of the above command is: @@ -235,6 +148,15 @@ You'll see the result in JSON format. The result of the above command is: } ``` +## Indexing documents in bulk + +You can index documents in bulk with the following command: + +```text +$ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl | jq . +$ ./bin/bayard commit | jq . +``` + ## Searching documents You can search documents with the following command: @@ -313,16 +235,15 @@ You'll see the result in JSON format. The result of the above command is: You can delete document with the following command: ```text -$ ./bin/bayard delete 1 -$ ./bin/bayard delete 2 -$ ./bin/bayard delete 3 -$ ./bin/bayard delete 4 -$ ./bin/bayard delete 5 -$ ./bin/bayard delete 6 -$ ./bin/bayard delete 7 -$ ./bin/bayard delete 8 -$ ./bin/bayard delete 9 -$ ./bin/bayard delete 10 -$ ./bin/bayard delete 11 -$ ./bin/bayard commit +$ ./bin/bayard delete --id=1 | jq . +$ ./bin/bayard commit | jq . +``` + +## Deleting documents in bulk + +You can delete documents in bulk with the following command: + +```text +$ ./bin/bayard delete --bulk --file=./examples/bulk_delete.jsonl | jq . +$ ./bin/bayard commit | jq . ``` diff --git a/docs_src/reference/apis/delete.md b/docs_src/reference/apis/delete.md index 1a29353..c1db8e9 100644 --- a/docs_src/reference/apis/delete.md +++ b/docs_src/reference/apis/delete.md @@ -6,6 +6,7 @@ Delete API deletes a document with the specified ID. ```text DELETE /index/docs/ +DELETE /index/docs ``` ## Path parameters @@ -13,6 +14,11 @@ DELETE /index/docs/ - `` A unique value that identifies the document in the index. +## Request body + +- `` +Document(s) expressed in JSONL format + ## Examples To delete a document: @@ -20,3 +26,12 @@ To delete a document: ```text $ curl -X DELETE 'http://localhost:8000/index/docs/1' ``` + +To delete documents in bulk: + +```text +$ curl -X DELETE \ + --header 'Content-Type: application/json' \ + --data-binary @./examples/bulk_delete.jsonl \ + 'http://localhost:8000/index/docs' +``` \ No newline at end of file diff --git a/docs_src/reference/apis/put.md b/docs_src/reference/apis/put.md index 79727bd..f2820cf 100644 --- a/docs_src/reference/apis/put.md +++ b/docs_src/reference/apis/put.md @@ -6,6 +6,7 @@ Put API puts a document with the specified ID and field. If specify an existing ```text PUT /index/docs/ +PUT /index/docs ``` ## Path parameters @@ -15,8 +16,8 @@ A unique value that identifies the document in the index. If specify an existing ## Request body -- `` -Document fields expressed in JSON format. +- `` +Document(s) expressed in JSON or JSONL format ## Example @@ -25,6 +26,15 @@ To put a document: ```text $ curl -X PUT \ --header 'Content-Type: application/json' \ - --data-binary '{"text": "Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust."}' \ + --data-binary @./examples/doc_1.json \ 'http://localhost:8000/index/docs/1' ``` + +To put documents in bulk: + +```text +$ curl -X PUT \ + --header 'Content-Type: application/json' \ + --data-binary @./examples/bulk_put.jsonl \ + 'http://localhost:8000/index/docs' +``` diff --git a/docs_src/reference/bayard/delete.md b/docs_src/reference/bayard/delete.md index 12bf3fa..c8323a8 100644 --- a/docs_src/reference/bayard/delete.md +++ b/docs_src/reference/bayard/delete.md @@ -8,6 +8,7 @@ The `bayard delete` CLI deletes a document with the specified ID. ## FLAGS + -b, --bulk A flag indicating whether or not to delete documents in bulk. -h, --help Prints help information. -v, --version Prints version information. @@ -15,21 +16,19 @@ The `bayard delete` CLI deletes a document with the specified ID. -s, --servers ... Server addresses in an existing cluster separated by ",". If not specified, use default servers. [default: 127.0.0.1:5000] - -## ARGS - - A unique value that identifies the document in the index. + -i, --id A unique value that identifies the document in the index. + -f, --file File path that delete document(s) expressed in JSONL format. ## EXAMPLES -To delete a document with default options: +To delete a document: ```text -$ ./bin/bayard delete 1 +$ ./bin/bayard delete --id=1 ``` -To delete a document with options: +To delete documents in builk: ```text -$ ./bin/bayard delete --servers=127.0.0.1:5001 1 +$ ./bin/bayard delete --bulk --file=./examples/bulk_delete.jsonl ``` diff --git a/docs_src/reference/bayard/get.md b/docs_src/reference/bayard/get.md index 62b6f72..636a1c4 100644 --- a/docs_src/reference/bayard/get.md +++ b/docs_src/reference/bayard/get.md @@ -15,21 +15,12 @@ The `bayard get` CLI gets a document with the specified ID. -s, --servers ... Server addresses in an existing cluster separated by ",". If not specified, use default servers. [default: 127.0.0.1:5000] - -## ARGS - - A unique value that identifies the document in the index. + -i, --id A unique value that identifies the document in the index. ## EXAMPLES To get a document with default options: ```text -$ ./bin/bayard get 1 -``` - -To get a document with options: - -```text -$ ./bin/bayard get --servers=127.0.0.1:5001 1 +$ ./bin/bayard get --id=1 ``` diff --git a/docs_src/reference/bayard/put.md b/docs_src/reference/bayard/put.md index 8c5d31c..4cef5a4 100644 --- a/docs_src/reference/bayard/put.md +++ b/docs_src/reference/bayard/put.md @@ -9,6 +9,7 @@ with the new document. ## FLAGS + -b, --bulk A flag indicating whether or not to put documents in bulk. -h, --help Prints help information. -v, --version Prints version information. @@ -16,35 +17,20 @@ with the new document. -s, --servers ... Server addresses in an existing cluster separated by ",". If not specified, use default servers. [default: 127.0.0.1:5000] - -## ARGS - - A unique value that identifies the document in the index. If specify an existing ID, the existing - document in the index is overwritten. - Document fields expressed in JSON format. + -i, --id A unique value that identifies the document in the index. If specified, the existing + document ID in the document is overwritten. + -f, --file File path that document(s) expressed in JSON or JSONL format. ## EXAMPLES -To put a document with default options: +To put a document: ```text -$ ./bin/bayard put 1 '{ - "url": "https://github.com/bayard-search/bayard", - "name": "Bayard", - "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.", - "star": 1132, - "facet": ["/category/search/server", "/language/rust"] -}' +$ ./bin/bayard put --id=1 --file=./examples/doc_1.json ``` -To put a document with options: +To put documents in bulk: ```text -$ ./bin/bayard put --servers=127.0.0.1:5001 1 '{ - "url": "https://github.com/bayard-search/bayard", - "name": "Bayard", - "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.", - "star": 1132, - "facet": ["/category/search/server", "/language/rust"] -}' +$ ./bin/bayard put --bulk --file=./examples/bulk_put.jsonl ``` diff --git a/etc/schema.json b/etc/schema.json index f965339..f2c72dd 100644 --- a/etc/schema.json +++ b/etc/schema.json @@ -1,6 +1,6 @@ [ { - "name": "id", + "name": "_id", "type": "text", "options": { "indexing": { diff --git a/examples/bulk_delete.jsonl b/examples/bulk_delete.jsonl new file mode 100644 index 0000000..471b28e --- /dev/null +++ b/examples/bulk_delete.jsonl @@ -0,0 +1,11 @@ +{"_id": "1"} +{"_id": "2"} +{"_id": "3"} +{"_id": "4"} +{"_id": "5"} +{"_id": "6"} +{"_id": "7"} +{"_id": "8"} +{"_id": "9"} +{"_id": "10"} +{"_id": "11"} diff --git a/examples/bulk_put.jsonl b/examples/bulk_put.jsonl new file mode 100644 index 0000000..5cb7592 --- /dev/null +++ b/examples/bulk_put.jsonl @@ -0,0 +1,11 @@ +{"_id": "1", "url": "https://github.com/bayard-search/bayard", "name": "Bayard", "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.", "popularity": 1152, "category": ["/category/search/server", "/language/rust"], "timestamp": "2019-12-19T10:41:00+09:00"} +{"_id": "2", "url": "https://lucene.apache.org/solr/", "name": "Apache Solr", "description": "Solr is highly reliable, scalable and fault tolerant, providing distributed indexing, replication and load-balanced querying, automated failover and recovery, centralized configuration and more.", "popularity": 3135, "category": ["/category/search/server", "/language/java"], "timestamp": "2019-12-19T14:08:00+09:00"} +{"_id": "3", "url": "https://www.elastic.co/products/elasticsearch", "name": "Elasticsearch", "description": "Elasticsearch is a distributed, open source search and analytics engine for all types of data, including textual, numerical, geospatial, structured, and unstructured.", "popularity": 46054, "category": ["/category/search/server", "/language/java"], "timestamp": "2019-12-19T08:19:00+09:00"} +{"_id": "4", "url": "https://github.com/mosuka/blast", "name": "Blast", "description": "Blast is a full text search and indexing server, written in Go, built on top of Bleve.", "popularity": 654, "category": ["/category/search/server", "/language/go"], "timestamp": "2019-10-18T19:50:00+09:00"} +{"_id": "5", "url": "https://github.com/go-ego/riot", "name": "Riot", "description": "Riot is Go Open Source, Distributed, Simple and efficient full text search engine.", "popularity": 4948, "category": ["/category/search/server", "/language/go"], "timestamp": "2019-12-16T07:12:00+09:00"} +{"_id": "6", "url": "https://github.com/toshi-search/Toshi", "name": "Toshi", "description": "Toshi is meant to be a full-text search engine similar to Elasticsearch. Toshi strives to be to Elasticsearch what Tantivy is to Lucene.", "popularity": 2448, "category": ["/category/search/server", "/language/rust"], "timestamp": "2019-12-02T04:00:00+09:00"} +{"_id": "7", "url": "https://github.com/valeriansaliou/sonic", "name": "Sonic", "description": "Sonic is a fast, lightweight and schema-less search backend.", "popularity": 7895, "category": ["/category/search/server", "/language/rust"], "timestamp": "2019-12-10T23:13:00+09:00"} +{"_id": "8", "url": "https://github.com/tantivy-search/tantivy", "name": "Tantivy", "description": "Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.", "popularity": 3142, "category": ["/category/search/library", "/language/rust"], "timestamp": "2019-12-19T10:07:00+09:00"} +{"_id": "9", "url": "https://lucene.apache.org/", "name": "Lucene", "description": "Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java.", "popularity": 3135, "category": ["/category/search/library", "/language/java"], "timestamp": "2019-12-19T14:08:00+09:00"} +{"_id": "10", "url": "https://blevesearch.com/", "name": "Bleve", "description": "Bleve is a modern text indexing library for go.", "popularity": 6211, "category": ["/category/search/library", "/language/go"], "timestamp": "2019-10-30T16:13:00+09:00"} +{"_id": "11", "url": "https://bitbucket.org/mchaput/whoosh/wiki/Home", "name": "Whoosh", "description": "Whoosh is a fast, pure Python search engine library.", "popularity": 0, "category": ["/category/search/library", "/language/python"], "timestamp": "2019-10-08T05:30:26+09:00"} diff --git a/examples/doc_1.json b/examples/doc_1.json new file mode 100644 index 0000000..249a747 --- /dev/null +++ b/examples/doc_1.json @@ -0,0 +1,8 @@ +{ + "url": "https://github.com/bayard-search/bayard", + "name": "Bayard", + "description": "Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.", + "popularity": 1152, + "category": ["/category/search/server", "/language/rust"], + "timestamp": "2019-12-19T10:41:00+09:00" +} diff --git a/proto/indexpb.proto b/proto/indexpb.proto index 3ca600b..3ad022f 100644 --- a/proto/indexpb.proto +++ b/proto/indexpb.proto @@ -21,6 +21,10 @@ service Index { } rpc Delete (indexrpcpb.ApplyReq) returns (indexrpcpb.DeleteResp) { } + rpc BulkPut (indexrpcpb.ApplyReq) returns (indexrpcpb.BulkPutResp) { + } + rpc BulkDelete (indexrpcpb.ApplyReq) returns (indexrpcpb.BulkDeleteResp) { + } rpc Commit (indexrpcpb.ApplyReq) returns (indexrpcpb.CommitResp) { } rpc Rollback (indexrpcpb.ApplyReq) returns (indexrpcpb.RollbackResp) { diff --git a/proto/indexrpcpb.proto b/proto/indexrpcpb.proto index fbd14bb..9021d69 100644 --- a/proto/indexrpcpb.proto +++ b/proto/indexrpcpb.proto @@ -12,11 +12,13 @@ enum RespErr { ErrGetFailed = 5; ErrPutFailed = 6; ErrDeleteFailed = 7; - ErrCommitFailed = 8; - ErrRollbackFailed = 9; - ErrMergeFailed = 10; - ErrSearchFailed = 11; - ErrSchemaFailed = 12; + ErrBulkPutFailed = 8; + ErrBulkDeleteFailed = 9; + ErrCommitFailed = 10; + ErrRollbackFailed = 11; + ErrMergeFailed = 12; + ErrSearchFailed = 13; + ErrSchemaFailed = 14; } enum ReqType { @@ -24,9 +26,11 @@ enum ReqType { Leave = 1; Put = 2; Delete = 3; - Commit = 4; - Rollback = 5; - Merge = 6; + BulkPut = 4; + BulkDelete = 5; + Commit = 6; + Rollback = 7; + Merge = 8; } message ApplyReq { @@ -36,9 +40,11 @@ message ApplyReq { LeaveReq leave_req = 4; PutReq put_req = 5; DeleteReq delete_req = 6; - CommitReq commit_req = 7; - RollbackReq rollback_req = 8; - MergeReq merge_req = 9; + BulkPutReq bulk_put_req = 7; + BulkDeleteReq bulk_delete_req = 8; + CommitReq commit_req = 9; + RollbackReq rollback_req = 10; + MergeReq merge_req = 11; } message ConfChangeReq { @@ -107,8 +113,7 @@ message GetResp { message PutReq { uint64 client_id = 1; uint64 seq = 2; - string doc_id = 3; - string fields = 4; + string doc = 3; } message PutResp { @@ -127,6 +132,28 @@ message DeleteResp { RespErr err = 2; } +message BulkPutReq { + uint64 client_id = 1; + uint64 seq = 2; + string docs = 3; +} + +message BulkPutResp { + string value = 1; + RespErr err = 2; +} + +message BulkDeleteReq { + uint64 client_id = 1; + uint64 seq = 2; + string docs = 3; +} + +message BulkDeleteResp { + string value = 1; + RespErr err = 2; +} + message CommitReq { uint64 client_id = 1; uint64 seq = 2; diff --git a/src/client/client.rs b/src/client/client.rs index 2ce2e93..73b5244 100644 --- a/src/client/client.rs +++ b/src/client/client.rs @@ -10,10 +10,10 @@ use raft::eraftpb::{ConfChange, ConfChangeType}; use crate::proto::indexpb_grpc::IndexClient; use crate::proto::indexrpcpb::{ - ApplyReq, CommitReq, CommitResp, ConfChangeReq, DeleteReq, DeleteResp, GetReq, GetResp, - MergeReq, MergeResp, MetricsReq, MetricsResp, PeersReq, PeersResp, ProbeReq, ProbeResp, PutReq, - PutResp, RaftDone, ReqType, RespErr, RollbackReq, RollbackResp, SchemaReq, SchemaResp, - SearchReq, SearchResp, + ApplyReq, BulkDeleteReq, BulkDeleteResp, BulkPutReq, BulkPutResp, CommitReq, CommitResp, + ConfChangeReq, DeleteReq, DeleteResp, GetReq, GetResp, MergeReq, MergeResp, MetricsReq, + MetricsResp, PeersReq, PeersResp, ProbeReq, ProbeResp, PutReq, PutResp, RaftDone, ReqType, + RespErr, RollbackReq, RollbackResp, SchemaReq, SchemaResp, SearchReq, SearchResp, }; pub fn create_client(addr: &str) -> IndexClient { @@ -315,12 +315,11 @@ impl Clerk { } } - pub fn put(&mut self, doc_id: &str, fields: &str) -> String { + pub fn put(&mut self, doc: &str) -> String { let mut put_req = PutReq::new(); put_req.set_client_id(self.client_id); put_req.set_seq(self.request_seq); - put_req.set_doc_id(doc_id.to_owned()); - put_req.set_fields(fields.to_owned()); + put_req.set_doc(doc.to_owned()); let mut req = ApplyReq::new(); req.set_client_id(self.client_id); @@ -418,6 +417,110 @@ impl Clerk { } } + pub fn bulk_put(&mut self, docs: &str) -> String { + let mut bulk_put_req = BulkPutReq::new(); + bulk_put_req.set_client_id(self.client_id); + bulk_put_req.set_seq(self.request_seq); + bulk_put_req.set_docs(docs.to_owned()); + + let mut req = ApplyReq::new(); + req.set_client_id(self.client_id); + req.set_req_type(ReqType::BulkPut); + req.set_bulk_put_req(bulk_put_req); + + self.request_seq += 1; + + let mut request_count: usize = 0; + loop { + if request_count > self.max_retry_count { + let msg = "exceeded max retry count"; + debug!("{}", msg); + + let mut ret = HashMap::new(); + ret.insert("error", msg.to_string()); + + return serde_json::to_string(&ret).unwrap(); + } + + let reply = self.servers[self.leader_id] + .bulk_put(&req) + .unwrap_or_else(|e| { + let msg = format!("{:?}", e); + error!("{:?}", msg); + + let mut ret = HashMap::new(); + ret.insert("error", msg.to_string()); + + let mut resp = BulkPutResp::new(); + resp.set_err(RespErr::ErrBulkPutFailed); + resp.set_value(serde_json::to_string(&ret).unwrap()); + resp + }); + match reply.err { + RespErr::OK => return reply.value, + _ => error!("failed to put documents in bulk"), + } + + self.leader_id = (self.leader_id + 1) % self.servers.len(); + request_count += 1; + debug!("{}", "retry to put documents in bulk"); + + thread::sleep(Duration::from_millis(100)); + } + } + + pub fn bulk_delete(&mut self, docs: &str) -> String { + let mut bulk_delete_req = BulkDeleteReq::new(); + bulk_delete_req.set_client_id(self.client_id); + bulk_delete_req.set_seq(self.request_seq); + bulk_delete_req.set_docs(docs.to_owned()); + + let mut req = ApplyReq::new(); + req.set_client_id(self.client_id); + req.set_req_type(ReqType::BulkDelete); + req.set_bulk_delete_req(bulk_delete_req); + + self.request_seq += 1; + + let mut request_count: usize = 0; + loop { + if request_count > self.max_retry_count { + let msg = "exceeded max retry count"; + debug!("{}", msg); + + let mut ret = HashMap::new(); + ret.insert("error", msg.to_string()); + + return serde_json::to_string(&ret).unwrap(); + } + + let reply = self.servers[self.leader_id] + .bulk_delete(&req) + .unwrap_or_else(|e| { + let msg = format!("{:?}", e); + error!("{:?}", msg); + + let mut ret = HashMap::new(); + ret.insert("error", msg.to_string()); + + let mut resp = BulkDeleteResp::new(); + resp.set_err(RespErr::ErrBulkDeleteFailed); + resp.set_value(serde_json::to_string(&ret).unwrap()); + resp + }); + match reply.err { + RespErr::OK => return reply.value, + _ => error!("failed to delete documents in bulk"), + } + + self.leader_id = (self.leader_id + 1) % self.servers.len(); + request_count += 1; + debug!("{}", "retry to delete documents in bulk"); + + thread::sleep(Duration::from_millis(100)); + } + } + pub fn commit(&mut self) -> String { let mut commit_req = CommitReq::new(); commit_req.set_client_id(self.client_id); diff --git a/src/cmd/delete.rs b/src/cmd/delete.rs index a308de8..2724afd 100644 --- a/src/cmd/delete.rs +++ b/src/cmd/delete.rs @@ -1,3 +1,5 @@ +use std::fs; + use clap::ArgMatches; use crate::client::client::{create_client, Clerk}; @@ -11,13 +13,21 @@ pub fn run_delete_cli(matches: &ArgMatches) -> Result<(), String> { .unwrap() .map(|addr| create_client(addr)) .collect(); - let doc_id = matches.value_of("DOC_ID").unwrap(); let client_id = rand::random(); let mut client = Clerk::new(&servers, client_id); - let value = client.delete(doc_id); - print!("{}", value); + + if matches.is_present("BULK") { + let file = matches.value_of("FILE").unwrap(); + let docs = fs::read_to_string(file).unwrap(); + + print!("{}", client.bulk_delete(&docs)); + } else { + let doc_id = matches.value_of("ID").unwrap(); + + print!("{}", client.delete(doc_id)); + } Ok(()) } diff --git a/src/cmd/gateway.rs b/src/cmd/gateway.rs index 2538b2d..084a4f3 100644 --- a/src/cmd/gateway.rs +++ b/src/cmd/gateway.rs @@ -8,6 +8,7 @@ use iron::{status, Chain, Iron, IronResult, Request, Response}; use logger::Logger; use persistent::Write; use router::Router; +use serde_json::Value; use urlencoded::UrlEncodedQuery; use crate::client::client::{create_client, Clerk}; @@ -81,9 +82,13 @@ fn put(req: &mut Request) -> IronResult { .read_to_string(&mut body) .expect("Failed to read line"); + let mut doc_json: Value = serde_json::from_str(body.as_str()).unwrap(); + doc_json["_id"] = Value::String(doc_id); + body = serde_json::to_string(&doc_json).unwrap(); + let client_arc = req.get::>().unwrap(); let mut client = client_arc.lock().unwrap(); - let value = client.put(&doc_id, &body); + let value = client.put(&body); Ok(Response::with((ContentType::json().0, status::Ok, value))) } @@ -104,6 +109,32 @@ fn delete(req: &mut Request) -> IronResult { Ok(Response::with((ContentType::json().0, status::Ok, value))) } +fn bulk_put(req: &mut Request) -> IronResult { + let mut body = String::new(); + req.body + .read_to_string(&mut body) + .expect("Failed to read line"); + + let client_arc = req.get::>().unwrap(); + let mut client = client_arc.lock().unwrap(); + let value = client.bulk_put(&body); + + Ok(Response::with((ContentType::json().0, status::Ok, value))) +} + +fn bulk_delete(req: &mut Request) -> IronResult { + let mut body = String::new(); + req.body + .read_to_string(&mut body) + .expect("Failed to read line"); + + let client_arc = req.get::>().unwrap(); + let mut client = client_arc.lock().unwrap(); + let value = client.bulk_delete(&body); + + Ok(Response::with((ContentType::json().0, status::Ok, value))) +} + fn commit(req: &mut Request) -> IronResult { let client_arc = req.get::>().unwrap(); let mut client = client_arc.lock().unwrap(); @@ -212,6 +243,8 @@ pub fn run_gateway_cli(matches: &ArgMatches) -> Result<(), String> { router.get("/index/docs/:doc_id", get, "get"); router.put("/index/docs/:doc_id", put, "put"); router.delete("/index/docs/:doc_id", delete, "delete"); + router.put("/index/docs", bulk_put, "bulk_put"); + router.delete("/index/docs", bulk_delete, "bulk_delete"); router.get("/index/search", search, "search"); router.get("/index/commit", commit, "commit"); router.get("/index/rollback", rollback, "rollback"); diff --git a/src/cmd/get.rs b/src/cmd/get.rs index c0b207b..3a2d04d 100644 --- a/src/cmd/get.rs +++ b/src/cmd/get.rs @@ -11,7 +11,7 @@ pub fn run_get_cli(matches: &ArgMatches) -> Result<(), String> { .unwrap() .map(|addr| create_client(addr)) .collect(); - let doc_id = matches.value_of("DOC_ID").unwrap(); + let doc_id = matches.value_of("ID").unwrap(); let client_id = rand::random(); diff --git a/src/cmd/put.rs b/src/cmd/put.rs index e91bcd6..dce5b6b 100644 --- a/src/cmd/put.rs +++ b/src/cmd/put.rs @@ -1,4 +1,8 @@ +use std::fs; + use clap::ArgMatches; +use serde_json; +use serde_json::Value; use crate::client::client::{create_client, Clerk}; use crate::util::log::set_logger; @@ -11,14 +15,28 @@ pub fn run_put_cli(matches: &ArgMatches) -> Result<(), String> { .unwrap() .map(|addr| create_client(addr)) .collect(); - let doc_id = matches.value_of("DOC_ID").unwrap(); - let fields = matches.value_of("FIELDS").unwrap(); let client_id = rand::random(); let mut client = Clerk::new(&servers, client_id); - let value = client.put(doc_id, fields); - print!("{}", value); + + let file = matches.value_of("FILE").unwrap(); + + if matches.is_present("BULK") { + let docs = fs::read_to_string(file).unwrap(); + + print!("{}", client.bulk_put(&docs)); + } else { + let mut doc = fs::read_to_string(file).unwrap(); + + if let Some(_doc_id) = matches.value_of("ID") { + let mut doc_json: Value = serde_json::from_str(doc.as_str()).unwrap(); + doc_json["_id"] = Value::String(_doc_id.to_string()); + doc = serde_json::to_string(&doc_json).unwrap(); + } + + print!("{}", client.put(&doc)); + } Ok(()) } diff --git a/src/cmd/serve.rs b/src/cmd/serve.rs index 2ea24c6..d1540a4 100644 --- a/src/cmd/serve.rs +++ b/src/cmd/serve.rs @@ -24,17 +24,8 @@ pub fn run_serve_cli(matches: &ArgMatches) -> Result<(), String> { } let data_directory = matches.value_of("DATA_DIRECTORY").unwrap(); let schema_file = matches.value_of("SCHEMA_FILE").unwrap(); - let unique_key_field_name = matches.value_of("UNIQUE_KEY_FIELD_NAME").unwrap(); - IndexServer::start_server( - id, - host, - port, - peers_addr, - data_directory, - schema_file, - unique_key_field_name, - ); + IndexServer::start_server(id, host, port, peers_addr, data_directory, schema_file); Ok(()) } diff --git a/src/main.rs b/src/main.rs index a9b10c1..c5ec4e8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -100,15 +100,15 @@ fn main() { .default_value("./etc/schema.json") .takes_value(true), ) - .arg( - Arg::with_name("UNIQUE_KEY_FIELD_NAME") - .help("Unique key field name. Specify the field name to be treated as a unique key in the field defined in the schema. If not specified, use the default unique key field name.") - .short("u") - .long("unique-key-field-name") - .value_name("UNIQUE_KEY_FIELD_NAME") - .default_value("id") - .takes_value(true), - ) +// .arg( +// Arg::with_name("UNIQUE_KEY_FIELD_NAME") +// .help("Unique key field name. Specify the field name to be treated as a unique key in the field defined in the schema. If not specified, use the default unique key field name.") +// .short("u") +// .long("unique-key-field-name") +// .value_name("UNIQUE_KEY_FIELD_NAME") +// .default_value("_id") +// .takes_value(true), +// ) ) .subcommand( SubCommand::with_name("probe") @@ -204,12 +204,12 @@ fn main() { ) ) .subcommand( - SubCommand::with_name("put") - .name("put") + SubCommand::with_name("get") + .name("get") .setting(AppSettings::DeriveDisplayOrder) .version(crate_version!()) .author(crate_authors!()) - .about("The `bayard put` CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.") + .about("The `bayard get` CLI gets a document with the specified ID.") .help_message("Prints help information.") .version_message("Prints version information.") .version_short("v") @@ -227,27 +227,22 @@ fn main() { .takes_value(true), ) .arg( - Arg::with_name("DOC_ID") - .help("A unique value that identifies the document in the index. If specify an existing ID, the existing document in the index is overwritten.") - .value_name("DOC_ID") - .required(true) - .takes_value(true), - ) - .arg( - Arg::with_name("FIELDS") - .help("Document fields expressed in JSON format.") - .value_name("FIELDS") + Arg::with_name("ID") + .help("A unique value that identifies the document in the index.") + .short("i") + .long("id") + .value_name("ID") .required(true) .takes_value(true), ) ) .subcommand( - SubCommand::with_name("get") - .name("get") + SubCommand::with_name("put") + .name("put") .setting(AppSettings::DeriveDisplayOrder) .version(crate_version!()) .author(crate_authors!()) - .about("The `bayard get` CLI gets a document with the specified ID.") + .about("The `bayard put` CLI puts a document with the specified ID and field. If specify an existing ID, it will be overwritten with the new document.") .help_message("Prints help information.") .version_message("Prints version information.") .version_short("v") @@ -265,10 +260,25 @@ fn main() { .takes_value(true), ) .arg( - Arg::with_name("DOC_ID") - .help("A unique value that identifies the document in the index.") - .value_name("DOC_ID") - .required(true) + Arg::with_name("BULK") + .help("A flag indicating whether or not to put documents in bulk.") + .short("b") + .long("bulk"), + ) + .arg( + Arg::with_name("ID") + .help("A unique value that identifies the document in the index. If specified, the existing document ID in the document is overwritten.") + .short("i") + .long("id") + .value_name("ID") + .takes_value(true), + ) + .arg( + Arg::with_name("FILE") + .help("File path that document(s) expressed in JSON or JSONL format.") + .short("f") + .long("file") + .value_name("FILE") .takes_value(true), ) ) @@ -296,10 +306,25 @@ fn main() { .takes_value(true), ) .arg( - Arg::with_name("DOC_ID") + Arg::with_name("BULK") + .help("A flag indicating whether or not to delete documents in bulk.") + .short("b") + .long("bulk"), + ) + .arg( + Arg::with_name("ID") .help("A unique value that identifies the document in the index.") - .value_name("DOC_ID") - .required(true) + .short("i") + .long("id") + .value_name("ID") + .takes_value(true), + ) + .arg( + Arg::with_name("FILE") + .help("File path that delete document(s) expressed in JSONL format.") + .short("f") + .long("file") + .value_name("FILE") .takes_value(true), ) ) diff --git a/src/proto/indexpb.rs b/src/proto/indexpb.rs index 40f984f..3b77c2b 100644 --- a/src/proto/indexpb.rs +++ b/src/proto/indexpb.rs @@ -28,7 +28,7 @@ const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_8_0; static file_descriptor_proto_data: &'static [u8] = b"\ \n\rindexpb.proto\x12\x07indexpb\x1a\x10indexrpcpb.proto\x1a\reraftpb.pr\ - oto2\xf2\x05\n\x05Index\x120\n\x04Raft\x12\x10.eraftpb.Message\x1a\x14.i\ + oto2\xf0\x06\n\x05Index\x120\n\x04Raft\x12\x10.eraftpb.Message\x1a\x14.i\ ndexrpcpb.RaftDone\"\0\x12C\n\x0eRaftConfChange\x12\x19.indexrpcpb.ConfC\ hangeReq\x1a\x14.indexrpcpb.RaftDone\"\0\x126\n\x05Probe\x12\x14.indexrp\ cpb.ProbeReq\x1a\x15.indexrpcpb.ProbeResp\"\0\x126\n\x05Peers\x12\x14.in\ @@ -37,50 +37,57 @@ static file_descriptor_proto_data: &'static [u8] = b"\ Get\x12\x12.indexrpcpb.GetReq\x1a\x13.indexrpcpb.GetResp\"\0\x122\n\x03P\ ut\x12\x14.indexrpcpb.ApplyReq\x1a\x13.indexrpcpb.PutResp\"\0\x128\n\x06\ Delete\x12\x14.indexrpcpb.ApplyReq\x1a\x16.indexrpcpb.DeleteResp\"\0\x12\ - 8\n\x06Commit\x12\x14.indexrpcpb.ApplyReq\x1a\x16.indexrpcpb.CommitResp\ - \"\0\x12<\n\x08Rollback\x12\x14.indexrpcpb.ApplyReq\x1a\x18.indexrpcpb.R\ - ollbackResp\"\0\x126\n\x05Merge\x12\x14.indexrpcpb.ApplyReq\x1a\x15.inde\ - xrpcpb.MergeResp\"\0\x129\n\x06Search\x12\x15.indexrpcpb.SearchReq\x1a\ - \x16.indexrpcpb.SearchResp\"\0\x129\n\x06Schema\x12\x15.indexrpcpb.Schem\ - aReq\x1a\x16.indexrpcpb.SchemaResp\"\0J\xa2\x06\n\x06\x12\x04\0\0!\x01\n\ - \x08\n\x01\x0c\x12\x03\0\0\x12\n\x08\n\x01\x02\x12\x03\x01\0\x10\n\t\n\ - \x02\x03\0\x12\x03\x03\0\x1a\n\t\n\x02\x03\x01\x12\x03\x04\0\x17\n\n\n\ - \x02\x06\0\x12\x04\x06\0!\x01\n\n\n\x03\x06\0\x01\x12\x03\x06\x08\r\n\ - \x0c\n\x04\x06\0\x02\0\x12\x04\x07\x04\x08\x05\n\x0c\n\x05\x06\0\x02\0\ - \x01\x12\x03\x07\x08\x0c\n\x0c\n\x05\x06\0\x02\0\x02\x12\x03\x07\x0e\x1d\ - \n\x0c\n\x05\x06\0\x02\0\x03\x12\x03\x07(;\n\x0c\n\x04\x06\0\x02\x01\x12\ - \x04\t\x04\n\x05\n\x0c\n\x05\x06\0\x02\x01\x01\x12\x03\t\x08\x16\n\x0c\n\ - \x05\x06\0\x02\x01\x02\x12\x03\t\x180\n\x0c\n\x05\x06\0\x02\x01\x03\x12\ - \x03\t;N\n\x0c\n\x04\x06\0\x02\x02\x12\x04\x0b\x04\x0c\x05\n\x0c\n\x05\ - \x06\0\x02\x02\x01\x12\x03\x0b\x08\r\n\x0c\n\x05\x06\0\x02\x02\x02\x12\ - \x03\x0b\x0f\"\n\x0c\n\x05\x06\0\x02\x02\x03\x12\x03\x0b-A\n\x0c\n\x04\ - \x06\0\x02\x03\x12\x04\r\x04\x0e\x05\n\x0c\n\x05\x06\0\x02\x03\x01\x12\ - \x03\r\x08\r\n\x0c\n\x05\x06\0\x02\x03\x02\x12\x03\r\x0f\"\n\x0c\n\x05\ - \x06\0\x02\x03\x03\x12\x03\r-A\n\x0c\n\x04\x06\0\x02\x04\x12\x04\x0f\x04\ - \x10\x05\n\x0c\n\x05\x06\0\x02\x04\x01\x12\x03\x0f\x08\x0f\n\x0c\n\x05\ - \x06\0\x02\x04\x02\x12\x03\x0f\x11&\n\x0c\n\x05\x06\0\x02\x04\x03\x12\ - \x03\x0f1G\n\x0c\n\x04\x06\0\x02\x05\x12\x04\x11\x04\x12\x05\n\x0c\n\x05\ - \x06\0\x02\x05\x01\x12\x03\x11\x08\x0b\n\x0c\n\x05\x06\0\x02\x05\x02\x12\ - \x03\x11\r\x1e\n\x0c\n\x05\x06\0\x02\x05\x03\x12\x03\x11);\n\x0c\n\x04\ - \x06\0\x02\x06\x12\x04\x13\x04\x14\x05\n\x0c\n\x05\x06\0\x02\x06\x01\x12\ - \x03\x13\x08\x0b\n\x0c\n\x05\x06\0\x02\x06\x02\x12\x03\x13\r\x20\n\x0c\n\ - \x05\x06\0\x02\x06\x03\x12\x03\x13+=\n\x0c\n\x04\x06\0\x02\x07\x12\x04\ - \x15\x04\x16\x05\n\x0c\n\x05\x06\0\x02\x07\x01\x12\x03\x15\x08\x0e\n\x0c\ - \n\x05\x06\0\x02\x07\x02\x12\x03\x15\x10#\n\x0c\n\x05\x06\0\x02\x07\x03\ - \x12\x03\x15.C\n\x0c\n\x04\x06\0\x02\x08\x12\x04\x17\x04\x18\x05\n\x0c\n\ - \x05\x06\0\x02\x08\x01\x12\x03\x17\x08\x0e\n\x0c\n\x05\x06\0\x02\x08\x02\ - \x12\x03\x17\x10#\n\x0c\n\x05\x06\0\x02\x08\x03\x12\x03\x17.C\n\x0c\n\ - \x04\x06\0\x02\t\x12\x04\x19\x04\x1a\x05\n\x0c\n\x05\x06\0\x02\t\x01\x12\ - \x03\x19\x08\x10\n\x0c\n\x05\x06\0\x02\t\x02\x12\x03\x19\x12%\n\x0c\n\ - \x05\x06\0\x02\t\x03\x12\x03\x190G\n\x0c\n\x04\x06\0\x02\n\x12\x04\x1b\ - \x04\x1c\x05\n\x0c\n\x05\x06\0\x02\n\x01\x12\x03\x1b\x08\r\n\x0c\n\x05\ - \x06\0\x02\n\x02\x12\x03\x1b\x0f\"\n\x0c\n\x05\x06\0\x02\n\x03\x12\x03\ - \x1b-A\n\x0c\n\x04\x06\0\x02\x0b\x12\x04\x1d\x04\x1e\x05\n\x0c\n\x05\x06\ - \0\x02\x0b\x01\x12\x03\x1d\x08\x0e\n\x0c\n\x05\x06\0\x02\x0b\x02\x12\x03\ - \x1d\x10$\n\x0c\n\x05\x06\0\x02\x0b\x03\x12\x03\x1d/D\n\x0c\n\x04\x06\0\ - \x02\x0c\x12\x04\x1f\x04\x20\x05\n\x0c\n\x05\x06\0\x02\x0c\x01\x12\x03\ - \x1f\x08\x0e\n\x0c\n\x05\x06\0\x02\x0c\x02\x12\x03\x1f\x10$\n\x0c\n\x05\ - \x06\0\x02\x0c\x03\x12\x03\x1f/Db\x06proto3\ + :\n\x07BulkPut\x12\x14.indexrpcpb.ApplyReq\x1a\x17.indexrpcpb.BulkPutRes\ + p\"\0\x12@\n\nBulkDelete\x12\x14.indexrpcpb.ApplyReq\x1a\x1a.indexrpcpb.\ + BulkDeleteResp\"\0\x128\n\x06Commit\x12\x14.indexrpcpb.ApplyReq\x1a\x16.\ + indexrpcpb.CommitResp\"\0\x12<\n\x08Rollback\x12\x14.indexrpcpb.ApplyReq\ + \x1a\x18.indexrpcpb.RollbackResp\"\0\x126\n\x05Merge\x12\x14.indexrpcpb.\ + ApplyReq\x1a\x15.indexrpcpb.MergeResp\"\0\x129\n\x06Search\x12\x15.index\ + rpcpb.SearchReq\x1a\x16.indexrpcpb.SearchResp\"\0\x129\n\x06Schema\x12\ + \x15.indexrpcpb.SchemaReq\x1a\x16.indexrpcpb.SchemaResp\"\0J\x92\x07\n\ + \x06\x12\x04\0\0%\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\n\x08\n\x01\x02\ + \x12\x03\x01\0\x10\n\t\n\x02\x03\0\x12\x03\x03\0\x1a\n\t\n\x02\x03\x01\ + \x12\x03\x04\0\x17\n\n\n\x02\x06\0\x12\x04\x06\0%\x01\n\n\n\x03\x06\0\ + \x01\x12\x03\x06\x08\r\n\x0c\n\x04\x06\0\x02\0\x12\x04\x07\x04\x08\x05\n\ + \x0c\n\x05\x06\0\x02\0\x01\x12\x03\x07\x08\x0c\n\x0c\n\x05\x06\0\x02\0\ + \x02\x12\x03\x07\x0e\x1d\n\x0c\n\x05\x06\0\x02\0\x03\x12\x03\x07(;\n\x0c\ + \n\x04\x06\0\x02\x01\x12\x04\t\x04\n\x05\n\x0c\n\x05\x06\0\x02\x01\x01\ + \x12\x03\t\x08\x16\n\x0c\n\x05\x06\0\x02\x01\x02\x12\x03\t\x180\n\x0c\n\ + \x05\x06\0\x02\x01\x03\x12\x03\t;N\n\x0c\n\x04\x06\0\x02\x02\x12\x04\x0b\ + \x04\x0c\x05\n\x0c\n\x05\x06\0\x02\x02\x01\x12\x03\x0b\x08\r\n\x0c\n\x05\ + \x06\0\x02\x02\x02\x12\x03\x0b\x0f\"\n\x0c\n\x05\x06\0\x02\x02\x03\x12\ + \x03\x0b-A\n\x0c\n\x04\x06\0\x02\x03\x12\x04\r\x04\x0e\x05\n\x0c\n\x05\ + \x06\0\x02\x03\x01\x12\x03\r\x08\r\n\x0c\n\x05\x06\0\x02\x03\x02\x12\x03\ + \r\x0f\"\n\x0c\n\x05\x06\0\x02\x03\x03\x12\x03\r-A\n\x0c\n\x04\x06\0\x02\ + \x04\x12\x04\x0f\x04\x10\x05\n\x0c\n\x05\x06\0\x02\x04\x01\x12\x03\x0f\ + \x08\x0f\n\x0c\n\x05\x06\0\x02\x04\x02\x12\x03\x0f\x11&\n\x0c\n\x05\x06\ + \0\x02\x04\x03\x12\x03\x0f1G\n\x0c\n\x04\x06\0\x02\x05\x12\x04\x11\x04\ + \x12\x05\n\x0c\n\x05\x06\0\x02\x05\x01\x12\x03\x11\x08\x0b\n\x0c\n\x05\ + \x06\0\x02\x05\x02\x12\x03\x11\r\x1e\n\x0c\n\x05\x06\0\x02\x05\x03\x12\ + \x03\x11);\n\x0c\n\x04\x06\0\x02\x06\x12\x04\x13\x04\x14\x05\n\x0c\n\x05\ + \x06\0\x02\x06\x01\x12\x03\x13\x08\x0b\n\x0c\n\x05\x06\0\x02\x06\x02\x12\ + \x03\x13\r\x20\n\x0c\n\x05\x06\0\x02\x06\x03\x12\x03\x13+=\n\x0c\n\x04\ + \x06\0\x02\x07\x12\x04\x15\x04\x16\x05\n\x0c\n\x05\x06\0\x02\x07\x01\x12\ + \x03\x15\x08\x0e\n\x0c\n\x05\x06\0\x02\x07\x02\x12\x03\x15\x10#\n\x0c\n\ + \x05\x06\0\x02\x07\x03\x12\x03\x15.C\n\x0c\n\x04\x06\0\x02\x08\x12\x04\ + \x17\x04\x18\x05\n\x0c\n\x05\x06\0\x02\x08\x01\x12\x03\x17\x08\x0f\n\x0c\ + \n\x05\x06\0\x02\x08\x02\x12\x03\x17\x11$\n\x0c\n\x05\x06\0\x02\x08\x03\ + \x12\x03\x17/E\n\x0c\n\x04\x06\0\x02\t\x12\x04\x19\x04\x1a\x05\n\x0c\n\ + \x05\x06\0\x02\t\x01\x12\x03\x19\x08\x12\n\x0c\n\x05\x06\0\x02\t\x02\x12\ + \x03\x19\x14'\n\x0c\n\x05\x06\0\x02\t\x03\x12\x03\x192K\n\x0c\n\x04\x06\ + \0\x02\n\x12\x04\x1b\x04\x1c\x05\n\x0c\n\x05\x06\0\x02\n\x01\x12\x03\x1b\ + \x08\x0e\n\x0c\n\x05\x06\0\x02\n\x02\x12\x03\x1b\x10#\n\x0c\n\x05\x06\0\ + \x02\n\x03\x12\x03\x1b.C\n\x0c\n\x04\x06\0\x02\x0b\x12\x04\x1d\x04\x1e\ + \x05\n\x0c\n\x05\x06\0\x02\x0b\x01\x12\x03\x1d\x08\x10\n\x0c\n\x05\x06\0\ + \x02\x0b\x02\x12\x03\x1d\x12%\n\x0c\n\x05\x06\0\x02\x0b\x03\x12\x03\x1d0\ + G\n\x0c\n\x04\x06\0\x02\x0c\x12\x04\x1f\x04\x20\x05\n\x0c\n\x05\x06\0\ + \x02\x0c\x01\x12\x03\x1f\x08\r\n\x0c\n\x05\x06\0\x02\x0c\x02\x12\x03\x1f\ + \x0f\"\n\x0c\n\x05\x06\0\x02\x0c\x03\x12\x03\x1f-A\n\x0c\n\x04\x06\0\x02\ + \r\x12\x04!\x04\"\x05\n\x0c\n\x05\x06\0\x02\r\x01\x12\x03!\x08\x0e\n\x0c\ + \n\x05\x06\0\x02\r\x02\x12\x03!\x10$\n\x0c\n\x05\x06\0\x02\r\x03\x12\x03\ + !/D\n\x0c\n\x04\x06\0\x02\x0e\x12\x04#\x04$\x05\n\x0c\n\x05\x06\0\x02\ + \x0e\x01\x12\x03#\x08\x0e\n\x0c\n\x05\x06\0\x02\x0e\x02\x12\x03#\x10$\n\ + \x0c\n\x05\x06\0\x02\x0e\x03\x12\x03#/Db\x06proto3\ "; static mut file_descriptor_proto_lazy: ::protobuf::lazy::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::lazy::Lazy { diff --git a/src/proto/indexpb_grpc.rs b/src/proto/indexpb_grpc.rs index db94d38..e38db04 100644 --- a/src/proto/indexpb_grpc.rs +++ b/src/proto/indexpb_grpc.rs @@ -74,6 +74,20 @@ const METHOD_INDEX_DELETE: ::grpcio::Method = ::grpcio::Method { + ty: ::grpcio::MethodType::Unary, + name: "/indexpb.Index/BulkPut", + req_mar: ::grpcio::Marshaller { ser: ::grpcio::pb_ser, de: ::grpcio::pb_de }, + resp_mar: ::grpcio::Marshaller { ser: ::grpcio::pb_ser, de: ::grpcio::pb_de }, +}; + +const METHOD_INDEX_BULK_DELETE: ::grpcio::Method = ::grpcio::Method { + ty: ::grpcio::MethodType::Unary, + name: "/indexpb.Index/BulkDelete", + req_mar: ::grpcio::Marshaller { ser: ::grpcio::pb_ser, de: ::grpcio::pb_de }, + resp_mar: ::grpcio::Marshaller { ser: ::grpcio::pb_ser, de: ::grpcio::pb_de }, +}; + const METHOD_INDEX_COMMIT: ::grpcio::Method = ::grpcio::Method { ty: ::grpcio::MethodType::Unary, name: "/indexpb.Index/Commit", @@ -249,6 +263,38 @@ impl IndexClient { self.delete_async_opt(req, ::grpcio::CallOption::default()) } + pub fn bulk_put_opt(&self, req: &super::indexrpcpb::ApplyReq, opt: ::grpcio::CallOption) -> ::grpcio::Result { + self.client.unary_call(&METHOD_INDEX_BULK_PUT, req, opt) + } + + pub fn bulk_put(&self, req: &super::indexrpcpb::ApplyReq) -> ::grpcio::Result { + self.bulk_put_opt(req, ::grpcio::CallOption::default()) + } + + pub fn bulk_put_async_opt(&self, req: &super::indexrpcpb::ApplyReq, opt: ::grpcio::CallOption) -> ::grpcio::Result<::grpcio::ClientUnaryReceiver> { + self.client.unary_call_async(&METHOD_INDEX_BULK_PUT, req, opt) + } + + pub fn bulk_put_async(&self, req: &super::indexrpcpb::ApplyReq) -> ::grpcio::Result<::grpcio::ClientUnaryReceiver> { + self.bulk_put_async_opt(req, ::grpcio::CallOption::default()) + } + + pub fn bulk_delete_opt(&self, req: &super::indexrpcpb::ApplyReq, opt: ::grpcio::CallOption) -> ::grpcio::Result { + self.client.unary_call(&METHOD_INDEX_BULK_DELETE, req, opt) + } + + pub fn bulk_delete(&self, req: &super::indexrpcpb::ApplyReq) -> ::grpcio::Result { + self.bulk_delete_opt(req, ::grpcio::CallOption::default()) + } + + pub fn bulk_delete_async_opt(&self, req: &super::indexrpcpb::ApplyReq, opt: ::grpcio::CallOption) -> ::grpcio::Result<::grpcio::ClientUnaryReceiver> { + self.client.unary_call_async(&METHOD_INDEX_BULK_DELETE, req, opt) + } + + pub fn bulk_delete_async(&self, req: &super::indexrpcpb::ApplyReq) -> ::grpcio::Result<::grpcio::ClientUnaryReceiver> { + self.bulk_delete_async_opt(req, ::grpcio::CallOption::default()) + } + pub fn commit_opt(&self, req: &super::indexrpcpb::ApplyReq, opt: ::grpcio::CallOption) -> ::grpcio::Result { self.client.unary_call(&METHOD_INDEX_COMMIT, req, opt) } @@ -342,6 +388,8 @@ pub trait Index { fn get(&mut self, ctx: ::grpcio::RpcContext, req: super::indexrpcpb::GetReq, sink: ::grpcio::UnarySink); fn put(&mut self, ctx: ::grpcio::RpcContext, req: super::indexrpcpb::ApplyReq, sink: ::grpcio::UnarySink); fn delete(&mut self, ctx: ::grpcio::RpcContext, req: super::indexrpcpb::ApplyReq, sink: ::grpcio::UnarySink); + fn bulk_put(&mut self, ctx: ::grpcio::RpcContext, req: super::indexrpcpb::ApplyReq, sink: ::grpcio::UnarySink); + fn bulk_delete(&mut self, ctx: ::grpcio::RpcContext, req: super::indexrpcpb::ApplyReq, sink: ::grpcio::UnarySink); fn commit(&mut self, ctx: ::grpcio::RpcContext, req: super::indexrpcpb::ApplyReq, sink: ::grpcio::UnarySink); fn rollback(&mut self, ctx: ::grpcio::RpcContext, req: super::indexrpcpb::ApplyReq, sink: ::grpcio::UnarySink); fn merge(&mut self, ctx: ::grpcio::RpcContext, req: super::indexrpcpb::ApplyReq, sink: ::grpcio::UnarySink); @@ -384,6 +432,14 @@ pub fn create_index(s: S) -> ::grpcio::Servic instance.delete(ctx, req, resp) }); let mut instance = s.clone(); + builder = builder.add_unary_handler(&METHOD_INDEX_BULK_PUT, move |ctx, req, resp| { + instance.bulk_put(ctx, req, resp) + }); + let mut instance = s.clone(); + builder = builder.add_unary_handler(&METHOD_INDEX_BULK_DELETE, move |ctx, req, resp| { + instance.bulk_delete(ctx, req, resp) + }); + let mut instance = s.clone(); builder = builder.add_unary_handler(&METHOD_INDEX_COMMIT, move |ctx, req, resp| { instance.commit(ctx, req, resp) }); diff --git a/src/proto/indexrpcpb.rs b/src/proto/indexrpcpb.rs index 61e46be..11c98a8 100644 --- a/src/proto/indexrpcpb.rs +++ b/src/proto/indexrpcpb.rs @@ -35,6 +35,8 @@ pub struct ApplyReq { pub leave_req: ::protobuf::SingularPtrField, pub put_req: ::protobuf::SingularPtrField, pub delete_req: ::protobuf::SingularPtrField, + pub bulk_put_req: ::protobuf::SingularPtrField, + pub bulk_delete_req: ::protobuf::SingularPtrField, pub commit_req: ::protobuf::SingularPtrField, pub rollback_req: ::protobuf::SingularPtrField, pub merge_req: ::protobuf::SingularPtrField, @@ -216,7 +218,73 @@ impl ApplyReq { self.delete_req.take().unwrap_or_else(|| DeleteReq::new()) } - // .indexrpcpb.CommitReq commit_req = 7; + // .indexrpcpb.BulkPutReq bulk_put_req = 7; + + + pub fn get_bulk_put_req(&self) -> &BulkPutReq { + self.bulk_put_req.as_ref().unwrap_or_else(|| BulkPutReq::default_instance()) + } + pub fn clear_bulk_put_req(&mut self) { + self.bulk_put_req.clear(); + } + + pub fn has_bulk_put_req(&self) -> bool { + self.bulk_put_req.is_some() + } + + // Param is passed by value, moved + pub fn set_bulk_put_req(&mut self, v: BulkPutReq) { + self.bulk_put_req = ::protobuf::SingularPtrField::some(v); + } + + // Mutable pointer to the field. + // If field is not initialized, it is initialized with default value first. + pub fn mut_bulk_put_req(&mut self) -> &mut BulkPutReq { + if self.bulk_put_req.is_none() { + self.bulk_put_req.set_default(); + } + self.bulk_put_req.as_mut().unwrap() + } + + // Take field + pub fn take_bulk_put_req(&mut self) -> BulkPutReq { + self.bulk_put_req.take().unwrap_or_else(|| BulkPutReq::new()) + } + + // .indexrpcpb.BulkDeleteReq bulk_delete_req = 8; + + + pub fn get_bulk_delete_req(&self) -> &BulkDeleteReq { + self.bulk_delete_req.as_ref().unwrap_or_else(|| BulkDeleteReq::default_instance()) + } + pub fn clear_bulk_delete_req(&mut self) { + self.bulk_delete_req.clear(); + } + + pub fn has_bulk_delete_req(&self) -> bool { + self.bulk_delete_req.is_some() + } + + // Param is passed by value, moved + pub fn set_bulk_delete_req(&mut self, v: BulkDeleteReq) { + self.bulk_delete_req = ::protobuf::SingularPtrField::some(v); + } + + // Mutable pointer to the field. + // If field is not initialized, it is initialized with default value first. + pub fn mut_bulk_delete_req(&mut self) -> &mut BulkDeleteReq { + if self.bulk_delete_req.is_none() { + self.bulk_delete_req.set_default(); + } + self.bulk_delete_req.as_mut().unwrap() + } + + // Take field + pub fn take_bulk_delete_req(&mut self) -> BulkDeleteReq { + self.bulk_delete_req.take().unwrap_or_else(|| BulkDeleteReq::new()) + } + + // .indexrpcpb.CommitReq commit_req = 9; pub fn get_commit_req(&self) -> &CommitReq { @@ -249,7 +317,7 @@ impl ApplyReq { self.commit_req.take().unwrap_or_else(|| CommitReq::new()) } - // .indexrpcpb.RollbackReq rollback_req = 8; + // .indexrpcpb.RollbackReq rollback_req = 10; pub fn get_rollback_req(&self) -> &RollbackReq { @@ -282,7 +350,7 @@ impl ApplyReq { self.rollback_req.take().unwrap_or_else(|| RollbackReq::new()) } - // .indexrpcpb.MergeReq merge_req = 9; + // .indexrpcpb.MergeReq merge_req = 11; pub fn get_merge_req(&self) -> &MergeReq { @@ -338,6 +406,16 @@ impl ::protobuf::Message for ApplyReq { return false; } }; + for v in &self.bulk_put_req { + if !v.is_initialized() { + return false; + } + }; + for v in &self.bulk_delete_req { + if !v.is_initialized() { + return false; + } + }; for v in &self.commit_req { if !v.is_initialized() { return false; @@ -383,12 +461,18 @@ impl ::protobuf::Message for ApplyReq { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.delete_req)?; }, 7 => { - ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.commit_req)?; + ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.bulk_put_req)?; }, 8 => { - ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.rollback_req)?; + ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.bulk_delete_req)?; }, 9 => { + ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.commit_req)?; + }, + 10 => { + ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.rollback_req)?; + }, + 11 => { ::protobuf::rt::read_singular_message_into(wire_type, is, &mut self.merge_req)?; }, _ => { @@ -425,6 +509,14 @@ impl ::protobuf::Message for ApplyReq { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; } + if let Some(ref v) = self.bulk_put_req.as_ref() { + let len = v.compute_size(); + my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; + } + if let Some(ref v) = self.bulk_delete_req.as_ref() { + let len = v.compute_size(); + my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; + } if let Some(ref v) = self.commit_req.as_ref() { let len = v.compute_size(); my_size += 1 + ::protobuf::rt::compute_raw_varint32_size(len) + len; @@ -469,21 +561,31 @@ impl ::protobuf::Message for ApplyReq { os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } - if let Some(ref v) = self.commit_req.as_ref() { + if let Some(ref v) = self.bulk_put_req.as_ref() { os.write_tag(7, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } - if let Some(ref v) = self.rollback_req.as_ref() { + if let Some(ref v) = self.bulk_delete_req.as_ref() { os.write_tag(8, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } - if let Some(ref v) = self.merge_req.as_ref() { + if let Some(ref v) = self.commit_req.as_ref() { os.write_tag(9, ::protobuf::wire_format::WireTypeLengthDelimited)?; os.write_raw_varint32(v.get_cached_size())?; v.write_to_with_cached_sizes(os)?; } + if let Some(ref v) = self.rollback_req.as_ref() { + os.write_tag(10, ::protobuf::wire_format::WireTypeLengthDelimited)?; + os.write_raw_varint32(v.get_cached_size())?; + v.write_to_with_cached_sizes(os)?; + } + if let Some(ref v) = self.merge_req.as_ref() { + os.write_tag(11, ::protobuf::wire_format::WireTypeLengthDelimited)?; + os.write_raw_varint32(v.get_cached_size())?; + v.write_to_with_cached_sizes(os)?; + } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } @@ -556,6 +658,16 @@ impl ::protobuf::Message for ApplyReq { |m: &ApplyReq| { &m.delete_req }, |m: &mut ApplyReq| { &mut m.delete_req }, )); + fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( + "bulk_put_req", + |m: &ApplyReq| { &m.bulk_put_req }, + |m: &mut ApplyReq| { &mut m.bulk_put_req }, + )); + fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( + "bulk_delete_req", + |m: &ApplyReq| { &m.bulk_delete_req }, + |m: &mut ApplyReq| { &mut m.bulk_delete_req }, + )); fields.push(::protobuf::reflect::accessor::make_singular_ptr_field_accessor::<_, ::protobuf::types::ProtobufTypeMessage>( "commit_req", |m: &ApplyReq| { &m.commit_req }, @@ -599,6 +711,8 @@ impl ::protobuf::Clear for ApplyReq { self.leave_req.clear(); self.put_req.clear(); self.delete_req.clear(); + self.bulk_put_req.clear(); + self.bulk_delete_req.clear(); self.commit_req.clear(); self.rollback_req.clear(); self.merge_req.clear(); @@ -3150,8 +3264,7 @@ pub struct PutReq { // message fields pub client_id: u64, pub seq: u64, - pub doc_id: ::std::string::String, - pub fields: ::std::string::String, + pub doc: ::std::string::String, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, @@ -3198,56 +3311,30 @@ impl PutReq { self.seq = v; } - // string doc_id = 3; - - - pub fn get_doc_id(&self) -> &str { - &self.doc_id - } - pub fn clear_doc_id(&mut self) { - self.doc_id.clear(); - } - - // Param is passed by value, moved - pub fn set_doc_id(&mut self, v: ::std::string::String) { - self.doc_id = v; - } - - // Mutable pointer to the field. - // If field is not initialized, it is initialized with default value first. - pub fn mut_doc_id(&mut self) -> &mut ::std::string::String { - &mut self.doc_id - } - - // Take field - pub fn take_doc_id(&mut self) -> ::std::string::String { - ::std::mem::replace(&mut self.doc_id, ::std::string::String::new()) - } - - // string fields = 4; + // string doc = 3; - pub fn get_fields(&self) -> &str { - &self.fields + pub fn get_doc(&self) -> &str { + &self.doc } - pub fn clear_fields(&mut self) { - self.fields.clear(); + pub fn clear_doc(&mut self) { + self.doc.clear(); } // Param is passed by value, moved - pub fn set_fields(&mut self, v: ::std::string::String) { - self.fields = v; + pub fn set_doc(&mut self, v: ::std::string::String) { + self.doc = v; } // Mutable pointer to the field. // If field is not initialized, it is initialized with default value first. - pub fn mut_fields(&mut self) -> &mut ::std::string::String { - &mut self.fields + pub fn mut_doc(&mut self) -> &mut ::std::string::String { + &mut self.doc } // Take field - pub fn take_fields(&mut self) -> ::std::string::String { - ::std::mem::replace(&mut self.fields, ::std::string::String::new()) + pub fn take_doc(&mut self) -> ::std::string::String { + ::std::mem::replace(&mut self.doc, ::std::string::String::new()) } } @@ -3275,10 +3362,7 @@ impl ::protobuf::Message for PutReq { self.seq = tmp; }, 3 => { - ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.doc_id)?; - }, - 4 => { - ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.fields)?; + ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.doc)?; }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; @@ -3298,11 +3382,8 @@ impl ::protobuf::Message for PutReq { if self.seq != 0 { my_size += ::protobuf::rt::value_size(2, self.seq, ::protobuf::wire_format::WireTypeVarint); } - if !self.doc_id.is_empty() { - my_size += ::protobuf::rt::string_size(3, &self.doc_id); - } - if !self.fields.is_empty() { - my_size += ::protobuf::rt::string_size(4, &self.fields); + if !self.doc.is_empty() { + my_size += ::protobuf::rt::string_size(3, &self.doc); } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); @@ -3316,11 +3397,8 @@ impl ::protobuf::Message for PutReq { if self.seq != 0 { os.write_uint64(2, self.seq)?; } - if !self.doc_id.is_empty() { - os.write_string(3, &self.doc_id)?; - } - if !self.fields.is_empty() { - os.write_string(4, &self.fields)?; + if !self.doc.is_empty() { + os.write_string(3, &self.doc)?; } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) @@ -3375,14 +3453,9 @@ impl ::protobuf::Message for PutReq { |m: &mut PutReq| { &mut m.seq }, )); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( - "doc_id", - |m: &PutReq| { &m.doc_id }, - |m: &mut PutReq| { &mut m.doc_id }, - )); - fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( - "fields", - |m: &PutReq| { &m.fields }, - |m: &mut PutReq| { &mut m.fields }, + "doc", + |m: &PutReq| { &m.doc }, + |m: &mut PutReq| { &mut m.doc }, )); ::protobuf::reflect::MessageDescriptor::new::( "PutReq", @@ -3408,8 +3481,7 @@ impl ::protobuf::Clear for PutReq { fn clear(&mut self) { self.client_id = 0; self.seq = 0; - self.doc_id.clear(); - self.fields.clear(); + self.doc.clear(); self.unknown_fields.clear(); } } @@ -4066,23 +4138,24 @@ impl ::protobuf::reflect::ProtobufValue for DeleteResp { } #[derive(PartialEq,Clone,Default)] -pub struct CommitReq { +pub struct BulkPutReq { // message fields pub client_id: u64, pub seq: u64, + pub docs: ::std::string::String, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } -impl<'a> ::std::default::Default for &'a CommitReq { - fn default() -> &'a CommitReq { - ::default_instance() +impl<'a> ::std::default::Default for &'a BulkPutReq { + fn default() -> &'a BulkPutReq { + ::default_instance() } } -impl CommitReq { - pub fn new() -> CommitReq { +impl BulkPutReq { + pub fn new() -> BulkPutReq { ::std::default::Default::default() } @@ -4115,9 +4188,35 @@ impl CommitReq { pub fn set_seq(&mut self, v: u64) { self.seq = v; } + + // string docs = 3; + + + pub fn get_docs(&self) -> &str { + &self.docs + } + pub fn clear_docs(&mut self) { + self.docs.clear(); + } + + // Param is passed by value, moved + pub fn set_docs(&mut self, v: ::std::string::String) { + self.docs = v; + } + + // Mutable pointer to the field. + // If field is not initialized, it is initialized with default value first. + pub fn mut_docs(&mut self) -> &mut ::std::string::String { + &mut self.docs + } + + // Take field + pub fn take_docs(&mut self) -> ::std::string::String { + ::std::mem::replace(&mut self.docs, ::std::string::String::new()) + } } -impl ::protobuf::Message for CommitReq { +impl ::protobuf::Message for BulkPutReq { fn is_initialized(&self) -> bool { true } @@ -4140,6 +4239,9 @@ impl ::protobuf::Message for CommitReq { let tmp = is.read_uint64()?; self.seq = tmp; }, + 3 => { + ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.docs)?; + }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, @@ -4158,6 +4260,9 @@ impl ::protobuf::Message for CommitReq { if self.seq != 0 { my_size += ::protobuf::rt::value_size(2, self.seq, ::protobuf::wire_format::WireTypeVarint); } + if !self.docs.is_empty() { + my_size += ::protobuf::rt::string_size(3, &self.docs); + } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size @@ -4170,6 +4275,9 @@ impl ::protobuf::Message for CommitReq { if self.seq != 0 { os.write_uint64(2, self.seq)?; } + if !self.docs.is_empty() { + os.write_string(3, &self.docs)?; + } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } @@ -4200,8 +4308,8 @@ impl ::protobuf::Message for CommitReq { Self::descriptor_static() } - fn new() -> CommitReq { - CommitReq::new() + fn new() -> BulkPutReq { + BulkPutReq::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { @@ -4214,16 +4322,21 @@ impl ::protobuf::Message for CommitReq { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( "client_id", - |m: &CommitReq| { &m.client_id }, - |m: &mut CommitReq| { &mut m.client_id }, + |m: &BulkPutReq| { &m.client_id }, + |m: &mut BulkPutReq| { &mut m.client_id }, )); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( "seq", - |m: &CommitReq| { &m.seq }, - |m: &mut CommitReq| { &mut m.seq }, + |m: &BulkPutReq| { &m.seq }, + |m: &mut BulkPutReq| { &mut m.seq }, )); - ::protobuf::reflect::MessageDescriptor::new::( - "CommitReq", + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( + "docs", + |m: &BulkPutReq| { &m.docs }, + |m: &mut BulkPutReq| { &mut m.docs }, + )); + ::protobuf::reflect::MessageDescriptor::new::( + "BulkPutReq", fields, file_descriptor_proto() ) @@ -4231,39 +4344,40 @@ impl ::protobuf::Message for CommitReq { } } - fn default_instance() -> &'static CommitReq { - static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { + fn default_instance() -> &'static BulkPutReq { + static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, - ptr: 0 as *const CommitReq, + ptr: 0 as *const BulkPutReq, }; unsafe { - instance.get(CommitReq::new) + instance.get(BulkPutReq::new) } } } -impl ::protobuf::Clear for CommitReq { +impl ::protobuf::Clear for BulkPutReq { fn clear(&mut self) { self.client_id = 0; self.seq = 0; + self.docs.clear(); self.unknown_fields.clear(); } } -impl ::std::fmt::Debug for CommitReq { +impl ::std::fmt::Debug for BulkPutReq { fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } -impl ::protobuf::reflect::ProtobufValue for CommitReq { +impl ::protobuf::reflect::ProtobufValue for BulkPutReq { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] -pub struct CommitResp { +pub struct BulkPutResp { // message fields pub value: ::std::string::String, pub err: RespErr, @@ -4272,14 +4386,14 @@ pub struct CommitResp { pub cached_size: ::protobuf::CachedSize, } -impl<'a> ::std::default::Default for &'a CommitResp { - fn default() -> &'a CommitResp { - ::default_instance() +impl<'a> ::std::default::Default for &'a BulkPutResp { + fn default() -> &'a BulkPutResp { + ::default_instance() } } -impl CommitResp { - pub fn new() -> CommitResp { +impl BulkPutResp { + pub fn new() -> BulkPutResp { ::std::default::Default::default() } @@ -4325,7 +4439,7 @@ impl CommitResp { } } -impl ::protobuf::Message for CommitResp { +impl ::protobuf::Message for BulkPutResp { fn is_initialized(&self) -> bool { true } @@ -4400,8 +4514,8 @@ impl ::protobuf::Message for CommitResp { Self::descriptor_static() } - fn new() -> CommitResp { - CommitResp::new() + fn new() -> BulkPutResp { + BulkPutResp::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { @@ -4414,16 +4528,16 @@ impl ::protobuf::Message for CommitResp { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "value", - |m: &CommitResp| { &m.value }, - |m: &mut CommitResp| { &mut m.value }, + |m: &BulkPutResp| { &m.value }, + |m: &mut BulkPutResp| { &mut m.value }, )); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum>( "err", - |m: &CommitResp| { &m.err }, - |m: &mut CommitResp| { &mut m.err }, + |m: &BulkPutResp| { &m.err }, + |m: &mut BulkPutResp| { &mut m.err }, )); - ::protobuf::reflect::MessageDescriptor::new::( - "CommitResp", + ::protobuf::reflect::MessageDescriptor::new::( + "BulkPutResp", fields, file_descriptor_proto() ) @@ -4431,18 +4545,18 @@ impl ::protobuf::Message for CommitResp { } } - fn default_instance() -> &'static CommitResp { - static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { + fn default_instance() -> &'static BulkPutResp { + static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, - ptr: 0 as *const CommitResp, + ptr: 0 as *const BulkPutResp, }; unsafe { - instance.get(CommitResp::new) + instance.get(BulkPutResp::new) } } } -impl ::protobuf::Clear for CommitResp { +impl ::protobuf::Clear for BulkPutResp { fn clear(&mut self) { self.value.clear(); self.err = RespErr::OK; @@ -4450,36 +4564,37 @@ impl ::protobuf::Clear for CommitResp { } } -impl ::std::fmt::Debug for CommitResp { +impl ::std::fmt::Debug for BulkPutResp { fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } -impl ::protobuf::reflect::ProtobufValue for CommitResp { +impl ::protobuf::reflect::ProtobufValue for BulkPutResp { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] -pub struct RollbackReq { +pub struct BulkDeleteReq { // message fields pub client_id: u64, pub seq: u64, + pub docs: ::std::string::String, // special fields pub unknown_fields: ::protobuf::UnknownFields, pub cached_size: ::protobuf::CachedSize, } -impl<'a> ::std::default::Default for &'a RollbackReq { - fn default() -> &'a RollbackReq { - ::default_instance() +impl<'a> ::std::default::Default for &'a BulkDeleteReq { + fn default() -> &'a BulkDeleteReq { + ::default_instance() } } -impl RollbackReq { - pub fn new() -> RollbackReq { +impl BulkDeleteReq { + pub fn new() -> BulkDeleteReq { ::std::default::Default::default() } @@ -4512,9 +4627,35 @@ impl RollbackReq { pub fn set_seq(&mut self, v: u64) { self.seq = v; } + + // string docs = 3; + + + pub fn get_docs(&self) -> &str { + &self.docs + } + pub fn clear_docs(&mut self) { + self.docs.clear(); + } + + // Param is passed by value, moved + pub fn set_docs(&mut self, v: ::std::string::String) { + self.docs = v; + } + + // Mutable pointer to the field. + // If field is not initialized, it is initialized with default value first. + pub fn mut_docs(&mut self) -> &mut ::std::string::String { + &mut self.docs + } + + // Take field + pub fn take_docs(&mut self) -> ::std::string::String { + ::std::mem::replace(&mut self.docs, ::std::string::String::new()) + } } -impl ::protobuf::Message for RollbackReq { +impl ::protobuf::Message for BulkDeleteReq { fn is_initialized(&self) -> bool { true } @@ -4537,6 +4678,9 @@ impl ::protobuf::Message for RollbackReq { let tmp = is.read_uint64()?; self.seq = tmp; }, + 3 => { + ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.docs)?; + }, _ => { ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; }, @@ -4555,6 +4699,9 @@ impl ::protobuf::Message for RollbackReq { if self.seq != 0 { my_size += ::protobuf::rt::value_size(2, self.seq, ::protobuf::wire_format::WireTypeVarint); } + if !self.docs.is_empty() { + my_size += ::protobuf::rt::string_size(3, &self.docs); + } my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); self.cached_size.set(my_size); my_size @@ -4567,6 +4714,9 @@ impl ::protobuf::Message for RollbackReq { if self.seq != 0 { os.write_uint64(2, self.seq)?; } + if !self.docs.is_empty() { + os.write_string(3, &self.docs)?; + } os.write_unknown_fields(self.get_unknown_fields())?; ::std::result::Result::Ok(()) } @@ -4597,8 +4747,8 @@ impl ::protobuf::Message for RollbackReq { Self::descriptor_static() } - fn new() -> RollbackReq { - RollbackReq::new() + fn new() -> BulkDeleteReq { + BulkDeleteReq::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { @@ -4611,16 +4761,21 @@ impl ::protobuf::Message for RollbackReq { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( "client_id", - |m: &RollbackReq| { &m.client_id }, - |m: &mut RollbackReq| { &mut m.client_id }, + |m: &BulkDeleteReq| { &m.client_id }, + |m: &mut BulkDeleteReq| { &mut m.client_id }, )); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( "seq", - |m: &RollbackReq| { &m.seq }, - |m: &mut RollbackReq| { &mut m.seq }, + |m: &BulkDeleteReq| { &m.seq }, + |m: &mut BulkDeleteReq| { &mut m.seq }, )); - ::protobuf::reflect::MessageDescriptor::new::( - "RollbackReq", + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( + "docs", + |m: &BulkDeleteReq| { &m.docs }, + |m: &mut BulkDeleteReq| { &mut m.docs }, + )); + ::protobuf::reflect::MessageDescriptor::new::( + "BulkDeleteReq", fields, file_descriptor_proto() ) @@ -4628,39 +4783,40 @@ impl ::protobuf::Message for RollbackReq { } } - fn default_instance() -> &'static RollbackReq { - static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { + fn default_instance() -> &'static BulkDeleteReq { + static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, - ptr: 0 as *const RollbackReq, + ptr: 0 as *const BulkDeleteReq, }; unsafe { - instance.get(RollbackReq::new) + instance.get(BulkDeleteReq::new) } } } -impl ::protobuf::Clear for RollbackReq { +impl ::protobuf::Clear for BulkDeleteReq { fn clear(&mut self) { self.client_id = 0; self.seq = 0; + self.docs.clear(); self.unknown_fields.clear(); } } -impl ::std::fmt::Debug for RollbackReq { +impl ::std::fmt::Debug for BulkDeleteReq { fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } -impl ::protobuf::reflect::ProtobufValue for RollbackReq { +impl ::protobuf::reflect::ProtobufValue for BulkDeleteReq { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] -pub struct RollbackResp { +pub struct BulkDeleteResp { // message fields pub value: ::std::string::String, pub err: RespErr, @@ -4669,14 +4825,14 @@ pub struct RollbackResp { pub cached_size: ::protobuf::CachedSize, } -impl<'a> ::std::default::Default for &'a RollbackResp { - fn default() -> &'a RollbackResp { - ::default_instance() +impl<'a> ::std::default::Default for &'a BulkDeleteResp { + fn default() -> &'a BulkDeleteResp { + ::default_instance() } } -impl RollbackResp { - pub fn new() -> RollbackResp { +impl BulkDeleteResp { + pub fn new() -> BulkDeleteResp { ::std::default::Default::default() } @@ -4722,7 +4878,7 @@ impl RollbackResp { } } -impl ::protobuf::Message for RollbackResp { +impl ::protobuf::Message for BulkDeleteResp { fn is_initialized(&self) -> bool { true } @@ -4797,8 +4953,8 @@ impl ::protobuf::Message for RollbackResp { Self::descriptor_static() } - fn new() -> RollbackResp { - RollbackResp::new() + fn new() -> BulkDeleteResp { + BulkDeleteResp::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { @@ -4811,16 +4967,16 @@ impl ::protobuf::Message for RollbackResp { let mut fields = ::std::vec::Vec::new(); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( "value", - |m: &RollbackResp| { &m.value }, - |m: &mut RollbackResp| { &mut m.value }, + |m: &BulkDeleteResp| { &m.value }, + |m: &mut BulkDeleteResp| { &mut m.value }, )); fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum>( "err", - |m: &RollbackResp| { &m.err }, - |m: &mut RollbackResp| { &mut m.err }, + |m: &BulkDeleteResp| { &m.err }, + |m: &mut BulkDeleteResp| { &mut m.err }, )); - ::protobuf::reflect::MessageDescriptor::new::( - "RollbackResp", + ::protobuf::reflect::MessageDescriptor::new::( + "BulkDeleteResp", fields, file_descriptor_proto() ) @@ -4828,18 +4984,18 @@ impl ::protobuf::Message for RollbackResp { } } - fn default_instance() -> &'static RollbackResp { - static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { + fn default_instance() -> &'static BulkDeleteResp { + static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { lock: ::protobuf::lazy::ONCE_INIT, - ptr: 0 as *const RollbackResp, + ptr: 0 as *const BulkDeleteResp, }; unsafe { - instance.get(RollbackResp::new) + instance.get(BulkDeleteResp::new) } } } -impl ::protobuf::Clear for RollbackResp { +impl ::protobuf::Clear for BulkDeleteResp { fn clear(&mut self) { self.value.clear(); self.err = RespErr::OK; @@ -4847,20 +5003,20 @@ impl ::protobuf::Clear for RollbackResp { } } -impl ::std::fmt::Debug for RollbackResp { +impl ::std::fmt::Debug for BulkDeleteResp { fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { ::protobuf::text_format::fmt(self, f) } } -impl ::protobuf::reflect::ProtobufValue for RollbackResp { +impl ::protobuf::reflect::ProtobufValue for BulkDeleteResp { fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { ::protobuf::reflect::ProtobufValueRef::Message(self) } } #[derive(PartialEq,Clone,Default)] -pub struct MergeReq { +pub struct CommitReq { // message fields pub client_id: u64, pub seq: u64, @@ -4869,14 +5025,14 @@ pub struct MergeReq { pub cached_size: ::protobuf::CachedSize, } -impl<'a> ::std::default::Default for &'a MergeReq { - fn default() -> &'a MergeReq { - ::default_instance() +impl<'a> ::std::default::Default for &'a CommitReq { + fn default() -> &'a CommitReq { + ::default_instance() } } -impl MergeReq { - pub fn new() -> MergeReq { +impl CommitReq { + pub fn new() -> CommitReq { ::std::default::Default::default() } @@ -4911,7 +5067,7 @@ impl MergeReq { } } -impl ::protobuf::Message for MergeReq { +impl ::protobuf::Message for CommitReq { fn is_initialized(&self) -> bool { true } @@ -4994,8 +5150,802 @@ impl ::protobuf::Message for MergeReq { Self::descriptor_static() } - fn new() -> MergeReq { - MergeReq::new() + fn new() -> CommitReq { + CommitReq::new() + } + + fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { + static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { + lock: ::protobuf::lazy::ONCE_INIT, + ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, + }; + unsafe { + descriptor.get(|| { + let mut fields = ::std::vec::Vec::new(); + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( + "client_id", + |m: &CommitReq| { &m.client_id }, + |m: &mut CommitReq| { &mut m.client_id }, + )); + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( + "seq", + |m: &CommitReq| { &m.seq }, + |m: &mut CommitReq| { &mut m.seq }, + )); + ::protobuf::reflect::MessageDescriptor::new::( + "CommitReq", + fields, + file_descriptor_proto() + ) + }) + } + } + + fn default_instance() -> &'static CommitReq { + static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { + lock: ::protobuf::lazy::ONCE_INIT, + ptr: 0 as *const CommitReq, + }; + unsafe { + instance.get(CommitReq::new) + } + } +} + +impl ::protobuf::Clear for CommitReq { + fn clear(&mut self) { + self.client_id = 0; + self.seq = 0; + self.unknown_fields.clear(); + } +} + +impl ::std::fmt::Debug for CommitReq { + fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { + ::protobuf::text_format::fmt(self, f) + } +} + +impl ::protobuf::reflect::ProtobufValue for CommitReq { + fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { + ::protobuf::reflect::ProtobufValueRef::Message(self) + } +} + +#[derive(PartialEq,Clone,Default)] +pub struct CommitResp { + // message fields + pub value: ::std::string::String, + pub err: RespErr, + // special fields + pub unknown_fields: ::protobuf::UnknownFields, + pub cached_size: ::protobuf::CachedSize, +} + +impl<'a> ::std::default::Default for &'a CommitResp { + fn default() -> &'a CommitResp { + ::default_instance() + } +} + +impl CommitResp { + pub fn new() -> CommitResp { + ::std::default::Default::default() + } + + // string value = 1; + + + pub fn get_value(&self) -> &str { + &self.value + } + pub fn clear_value(&mut self) { + self.value.clear(); + } + + // Param is passed by value, moved + pub fn set_value(&mut self, v: ::std::string::String) { + self.value = v; + } + + // Mutable pointer to the field. + // If field is not initialized, it is initialized with default value first. + pub fn mut_value(&mut self) -> &mut ::std::string::String { + &mut self.value + } + + // Take field + pub fn take_value(&mut self) -> ::std::string::String { + ::std::mem::replace(&mut self.value, ::std::string::String::new()) + } + + // .indexrpcpb.RespErr err = 2; + + + pub fn get_err(&self) -> RespErr { + self.err + } + pub fn clear_err(&mut self) { + self.err = RespErr::OK; + } + + // Param is passed by value, moved + pub fn set_err(&mut self, v: RespErr) { + self.err = v; + } +} + +impl ::protobuf::Message for CommitResp { + fn is_initialized(&self) -> bool { + true + } + + fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> { + while !is.eof()? { + let (field_number, wire_type) = is.read_tag_unpack()?; + match field_number { + 1 => { + ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.value)?; + }, + 2 => { + ::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.err, 2, &mut self.unknown_fields)? + }, + _ => { + ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; + }, + }; + } + ::std::result::Result::Ok(()) + } + + // Compute sizes of nested messages + #[allow(unused_variables)] + fn compute_size(&self) -> u32 { + let mut my_size = 0; + if !self.value.is_empty() { + my_size += ::protobuf::rt::string_size(1, &self.value); + } + if self.err != RespErr::OK { + my_size += ::protobuf::rt::enum_size(2, self.err); + } + my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); + self.cached_size.set(my_size); + my_size + } + + fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> { + if !self.value.is_empty() { + os.write_string(1, &self.value)?; + } + if self.err != RespErr::OK { + os.write_enum(2, self.err.value())?; + } + os.write_unknown_fields(self.get_unknown_fields())?; + ::std::result::Result::Ok(()) + } + + fn get_cached_size(&self) -> u32 { + self.cached_size.get() + } + + fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { + &self.unknown_fields + } + + fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { + &mut self.unknown_fields + } + + fn as_any(&self) -> &dyn (::std::any::Any) { + self as &dyn (::std::any::Any) + } + fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { + self as &mut dyn (::std::any::Any) + } + fn into_any(self: Box) -> ::std::boxed::Box { + self + } + + fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { + Self::descriptor_static() + } + + fn new() -> CommitResp { + CommitResp::new() + } + + fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { + static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { + lock: ::protobuf::lazy::ONCE_INIT, + ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, + }; + unsafe { + descriptor.get(|| { + let mut fields = ::std::vec::Vec::new(); + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( + "value", + |m: &CommitResp| { &m.value }, + |m: &mut CommitResp| { &mut m.value }, + )); + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum>( + "err", + |m: &CommitResp| { &m.err }, + |m: &mut CommitResp| { &mut m.err }, + )); + ::protobuf::reflect::MessageDescriptor::new::( + "CommitResp", + fields, + file_descriptor_proto() + ) + }) + } + } + + fn default_instance() -> &'static CommitResp { + static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { + lock: ::protobuf::lazy::ONCE_INIT, + ptr: 0 as *const CommitResp, + }; + unsafe { + instance.get(CommitResp::new) + } + } +} + +impl ::protobuf::Clear for CommitResp { + fn clear(&mut self) { + self.value.clear(); + self.err = RespErr::OK; + self.unknown_fields.clear(); + } +} + +impl ::std::fmt::Debug for CommitResp { + fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { + ::protobuf::text_format::fmt(self, f) + } +} + +impl ::protobuf::reflect::ProtobufValue for CommitResp { + fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { + ::protobuf::reflect::ProtobufValueRef::Message(self) + } +} + +#[derive(PartialEq,Clone,Default)] +pub struct RollbackReq { + // message fields + pub client_id: u64, + pub seq: u64, + // special fields + pub unknown_fields: ::protobuf::UnknownFields, + pub cached_size: ::protobuf::CachedSize, +} + +impl<'a> ::std::default::Default for &'a RollbackReq { + fn default() -> &'a RollbackReq { + ::default_instance() + } +} + +impl RollbackReq { + pub fn new() -> RollbackReq { + ::std::default::Default::default() + } + + // uint64 client_id = 1; + + + pub fn get_client_id(&self) -> u64 { + self.client_id + } + pub fn clear_client_id(&mut self) { + self.client_id = 0; + } + + // Param is passed by value, moved + pub fn set_client_id(&mut self, v: u64) { + self.client_id = v; + } + + // uint64 seq = 2; + + + pub fn get_seq(&self) -> u64 { + self.seq + } + pub fn clear_seq(&mut self) { + self.seq = 0; + } + + // Param is passed by value, moved + pub fn set_seq(&mut self, v: u64) { + self.seq = v; + } +} + +impl ::protobuf::Message for RollbackReq { + fn is_initialized(&self) -> bool { + true + } + + fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> { + while !is.eof()? { + let (field_number, wire_type) = is.read_tag_unpack()?; + match field_number { + 1 => { + if wire_type != ::protobuf::wire_format::WireTypeVarint { + return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); + } + let tmp = is.read_uint64()?; + self.client_id = tmp; + }, + 2 => { + if wire_type != ::protobuf::wire_format::WireTypeVarint { + return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); + } + let tmp = is.read_uint64()?; + self.seq = tmp; + }, + _ => { + ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; + }, + }; + } + ::std::result::Result::Ok(()) + } + + // Compute sizes of nested messages + #[allow(unused_variables)] + fn compute_size(&self) -> u32 { + let mut my_size = 0; + if self.client_id != 0 { + my_size += ::protobuf::rt::value_size(1, self.client_id, ::protobuf::wire_format::WireTypeVarint); + } + if self.seq != 0 { + my_size += ::protobuf::rt::value_size(2, self.seq, ::protobuf::wire_format::WireTypeVarint); + } + my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); + self.cached_size.set(my_size); + my_size + } + + fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> { + if self.client_id != 0 { + os.write_uint64(1, self.client_id)?; + } + if self.seq != 0 { + os.write_uint64(2, self.seq)?; + } + os.write_unknown_fields(self.get_unknown_fields())?; + ::std::result::Result::Ok(()) + } + + fn get_cached_size(&self) -> u32 { + self.cached_size.get() + } + + fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { + &self.unknown_fields + } + + fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { + &mut self.unknown_fields + } + + fn as_any(&self) -> &dyn (::std::any::Any) { + self as &dyn (::std::any::Any) + } + fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { + self as &mut dyn (::std::any::Any) + } + fn into_any(self: Box) -> ::std::boxed::Box { + self + } + + fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { + Self::descriptor_static() + } + + fn new() -> RollbackReq { + RollbackReq::new() + } + + fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { + static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { + lock: ::protobuf::lazy::ONCE_INIT, + ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, + }; + unsafe { + descriptor.get(|| { + let mut fields = ::std::vec::Vec::new(); + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( + "client_id", + |m: &RollbackReq| { &m.client_id }, + |m: &mut RollbackReq| { &mut m.client_id }, + )); + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeUint64>( + "seq", + |m: &RollbackReq| { &m.seq }, + |m: &mut RollbackReq| { &mut m.seq }, + )); + ::protobuf::reflect::MessageDescriptor::new::( + "RollbackReq", + fields, + file_descriptor_proto() + ) + }) + } + } + + fn default_instance() -> &'static RollbackReq { + static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { + lock: ::protobuf::lazy::ONCE_INIT, + ptr: 0 as *const RollbackReq, + }; + unsafe { + instance.get(RollbackReq::new) + } + } +} + +impl ::protobuf::Clear for RollbackReq { + fn clear(&mut self) { + self.client_id = 0; + self.seq = 0; + self.unknown_fields.clear(); + } +} + +impl ::std::fmt::Debug for RollbackReq { + fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { + ::protobuf::text_format::fmt(self, f) + } +} + +impl ::protobuf::reflect::ProtobufValue for RollbackReq { + fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { + ::protobuf::reflect::ProtobufValueRef::Message(self) + } +} + +#[derive(PartialEq,Clone,Default)] +pub struct RollbackResp { + // message fields + pub value: ::std::string::String, + pub err: RespErr, + // special fields + pub unknown_fields: ::protobuf::UnknownFields, + pub cached_size: ::protobuf::CachedSize, +} + +impl<'a> ::std::default::Default for &'a RollbackResp { + fn default() -> &'a RollbackResp { + ::default_instance() + } +} + +impl RollbackResp { + pub fn new() -> RollbackResp { + ::std::default::Default::default() + } + + // string value = 1; + + + pub fn get_value(&self) -> &str { + &self.value + } + pub fn clear_value(&mut self) { + self.value.clear(); + } + + // Param is passed by value, moved + pub fn set_value(&mut self, v: ::std::string::String) { + self.value = v; + } + + // Mutable pointer to the field. + // If field is not initialized, it is initialized with default value first. + pub fn mut_value(&mut self) -> &mut ::std::string::String { + &mut self.value + } + + // Take field + pub fn take_value(&mut self) -> ::std::string::String { + ::std::mem::replace(&mut self.value, ::std::string::String::new()) + } + + // .indexrpcpb.RespErr err = 2; + + + pub fn get_err(&self) -> RespErr { + self.err + } + pub fn clear_err(&mut self) { + self.err = RespErr::OK; + } + + // Param is passed by value, moved + pub fn set_err(&mut self, v: RespErr) { + self.err = v; + } +} + +impl ::protobuf::Message for RollbackResp { + fn is_initialized(&self) -> bool { + true + } + + fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> { + while !is.eof()? { + let (field_number, wire_type) = is.read_tag_unpack()?; + match field_number { + 1 => { + ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.value)?; + }, + 2 => { + ::protobuf::rt::read_proto3_enum_with_unknown_fields_into(wire_type, is, &mut self.err, 2, &mut self.unknown_fields)? + }, + _ => { + ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; + }, + }; + } + ::std::result::Result::Ok(()) + } + + // Compute sizes of nested messages + #[allow(unused_variables)] + fn compute_size(&self) -> u32 { + let mut my_size = 0; + if !self.value.is_empty() { + my_size += ::protobuf::rt::string_size(1, &self.value); + } + if self.err != RespErr::OK { + my_size += ::protobuf::rt::enum_size(2, self.err); + } + my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); + self.cached_size.set(my_size); + my_size + } + + fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> { + if !self.value.is_empty() { + os.write_string(1, &self.value)?; + } + if self.err != RespErr::OK { + os.write_enum(2, self.err.value())?; + } + os.write_unknown_fields(self.get_unknown_fields())?; + ::std::result::Result::Ok(()) + } + + fn get_cached_size(&self) -> u32 { + self.cached_size.get() + } + + fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { + &self.unknown_fields + } + + fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { + &mut self.unknown_fields + } + + fn as_any(&self) -> &dyn (::std::any::Any) { + self as &dyn (::std::any::Any) + } + fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { + self as &mut dyn (::std::any::Any) + } + fn into_any(self: Box) -> ::std::boxed::Box { + self + } + + fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { + Self::descriptor_static() + } + + fn new() -> RollbackResp { + RollbackResp::new() + } + + fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { + static mut descriptor: ::protobuf::lazy::Lazy<::protobuf::reflect::MessageDescriptor> = ::protobuf::lazy::Lazy { + lock: ::protobuf::lazy::ONCE_INIT, + ptr: 0 as *const ::protobuf::reflect::MessageDescriptor, + }; + unsafe { + descriptor.get(|| { + let mut fields = ::std::vec::Vec::new(); + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>( + "value", + |m: &RollbackResp| { &m.value }, + |m: &mut RollbackResp| { &mut m.value }, + )); + fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeEnum>( + "err", + |m: &RollbackResp| { &m.err }, + |m: &mut RollbackResp| { &mut m.err }, + )); + ::protobuf::reflect::MessageDescriptor::new::( + "RollbackResp", + fields, + file_descriptor_proto() + ) + }) + } + } + + fn default_instance() -> &'static RollbackResp { + static mut instance: ::protobuf::lazy::Lazy = ::protobuf::lazy::Lazy { + lock: ::protobuf::lazy::ONCE_INIT, + ptr: 0 as *const RollbackResp, + }; + unsafe { + instance.get(RollbackResp::new) + } + } +} + +impl ::protobuf::Clear for RollbackResp { + fn clear(&mut self) { + self.value.clear(); + self.err = RespErr::OK; + self.unknown_fields.clear(); + } +} + +impl ::std::fmt::Debug for RollbackResp { + fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result { + ::protobuf::text_format::fmt(self, f) + } +} + +impl ::protobuf::reflect::ProtobufValue for RollbackResp { + fn as_ref(&self) -> ::protobuf::reflect::ProtobufValueRef { + ::protobuf::reflect::ProtobufValueRef::Message(self) + } +} + +#[derive(PartialEq,Clone,Default)] +pub struct MergeReq { + // message fields + pub client_id: u64, + pub seq: u64, + // special fields + pub unknown_fields: ::protobuf::UnknownFields, + pub cached_size: ::protobuf::CachedSize, +} + +impl<'a> ::std::default::Default for &'a MergeReq { + fn default() -> &'a MergeReq { + ::default_instance() + } +} + +impl MergeReq { + pub fn new() -> MergeReq { + ::std::default::Default::default() + } + + // uint64 client_id = 1; + + + pub fn get_client_id(&self) -> u64 { + self.client_id + } + pub fn clear_client_id(&mut self) { + self.client_id = 0; + } + + // Param is passed by value, moved + pub fn set_client_id(&mut self, v: u64) { + self.client_id = v; + } + + // uint64 seq = 2; + + + pub fn get_seq(&self) -> u64 { + self.seq + } + pub fn clear_seq(&mut self) { + self.seq = 0; + } + + // Param is passed by value, moved + pub fn set_seq(&mut self, v: u64) { + self.seq = v; + } +} + +impl ::protobuf::Message for MergeReq { + fn is_initialized(&self) -> bool { + true + } + + fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream) -> ::protobuf::ProtobufResult<()> { + while !is.eof()? { + let (field_number, wire_type) = is.read_tag_unpack()?; + match field_number { + 1 => { + if wire_type != ::protobuf::wire_format::WireTypeVarint { + return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); + } + let tmp = is.read_uint64()?; + self.client_id = tmp; + }, + 2 => { + if wire_type != ::protobuf::wire_format::WireTypeVarint { + return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type)); + } + let tmp = is.read_uint64()?; + self.seq = tmp; + }, + _ => { + ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?; + }, + }; + } + ::std::result::Result::Ok(()) + } + + // Compute sizes of nested messages + #[allow(unused_variables)] + fn compute_size(&self) -> u32 { + let mut my_size = 0; + if self.client_id != 0 { + my_size += ::protobuf::rt::value_size(1, self.client_id, ::protobuf::wire_format::WireTypeVarint); + } + if self.seq != 0 { + my_size += ::protobuf::rt::value_size(2, self.seq, ::protobuf::wire_format::WireTypeVarint); + } + my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields()); + self.cached_size.set(my_size); + my_size + } + + fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream) -> ::protobuf::ProtobufResult<()> { + if self.client_id != 0 { + os.write_uint64(1, self.client_id)?; + } + if self.seq != 0 { + os.write_uint64(2, self.seq)?; + } + os.write_unknown_fields(self.get_unknown_fields())?; + ::std::result::Result::Ok(()) + } + + fn get_cached_size(&self) -> u32 { + self.cached_size.get() + } + + fn get_unknown_fields(&self) -> &::protobuf::UnknownFields { + &self.unknown_fields + } + + fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields { + &mut self.unknown_fields + } + + fn as_any(&self) -> &dyn (::std::any::Any) { + self as &dyn (::std::any::Any) + } + fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) { + self as &mut dyn (::std::any::Any) + } + fn into_any(self: Box) -> ::std::boxed::Box { + self + } + + fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor { + Self::descriptor_static() + } + + fn new() -> MergeReq { + MergeReq::new() } fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor { @@ -6325,11 +7275,13 @@ pub enum RespErr { ErrGetFailed = 5, ErrPutFailed = 6, ErrDeleteFailed = 7, - ErrCommitFailed = 8, - ErrRollbackFailed = 9, - ErrMergeFailed = 10, - ErrSearchFailed = 11, - ErrSchemaFailed = 12, + ErrBulkPutFailed = 8, + ErrBulkDeleteFailed = 9, + ErrCommitFailed = 10, + ErrRollbackFailed = 11, + ErrMergeFailed = 12, + ErrSearchFailed = 13, + ErrSchemaFailed = 14, } impl ::protobuf::ProtobufEnum for RespErr { @@ -6347,11 +7299,13 @@ impl ::protobuf::ProtobufEnum for RespErr { 5 => ::std::option::Option::Some(RespErr::ErrGetFailed), 6 => ::std::option::Option::Some(RespErr::ErrPutFailed), 7 => ::std::option::Option::Some(RespErr::ErrDeleteFailed), - 8 => ::std::option::Option::Some(RespErr::ErrCommitFailed), - 9 => ::std::option::Option::Some(RespErr::ErrRollbackFailed), - 10 => ::std::option::Option::Some(RespErr::ErrMergeFailed), - 11 => ::std::option::Option::Some(RespErr::ErrSearchFailed), - 12 => ::std::option::Option::Some(RespErr::ErrSchemaFailed), + 8 => ::std::option::Option::Some(RespErr::ErrBulkPutFailed), + 9 => ::std::option::Option::Some(RespErr::ErrBulkDeleteFailed), + 10 => ::std::option::Option::Some(RespErr::ErrCommitFailed), + 11 => ::std::option::Option::Some(RespErr::ErrRollbackFailed), + 12 => ::std::option::Option::Some(RespErr::ErrMergeFailed), + 13 => ::std::option::Option::Some(RespErr::ErrSearchFailed), + 14 => ::std::option::Option::Some(RespErr::ErrSchemaFailed), _ => ::std::option::Option::None } } @@ -6366,6 +7320,8 @@ impl ::protobuf::ProtobufEnum for RespErr { RespErr::ErrGetFailed, RespErr::ErrPutFailed, RespErr::ErrDeleteFailed, + RespErr::ErrBulkPutFailed, + RespErr::ErrBulkDeleteFailed, RespErr::ErrCommitFailed, RespErr::ErrRollbackFailed, RespErr::ErrMergeFailed, @@ -6409,9 +7365,11 @@ pub enum ReqType { Leave = 1, Put = 2, Delete = 3, - Commit = 4, - Rollback = 5, - Merge = 6, + BulkPut = 4, + BulkDelete = 5, + Commit = 6, + Rollback = 7, + Merge = 8, } impl ::protobuf::ProtobufEnum for ReqType { @@ -6425,9 +7383,11 @@ impl ::protobuf::ProtobufEnum for ReqType { 1 => ::std::option::Option::Some(ReqType::Leave), 2 => ::std::option::Option::Some(ReqType::Put), 3 => ::std::option::Option::Some(ReqType::Delete), - 4 => ::std::option::Option::Some(ReqType::Commit), - 5 => ::std::option::Option::Some(ReqType::Rollback), - 6 => ::std::option::Option::Some(ReqType::Merge), + 4 => ::std::option::Option::Some(ReqType::BulkPut), + 5 => ::std::option::Option::Some(ReqType::BulkDelete), + 6 => ::std::option::Option::Some(ReqType::Commit), + 7 => ::std::option::Option::Some(ReqType::Rollback), + 8 => ::std::option::Option::Some(ReqType::Merge), _ => ::std::option::Option::None } } @@ -6438,6 +7398,8 @@ impl ::protobuf::ProtobufEnum for ReqType { ReqType::Leave, ReqType::Put, ReqType::Delete, + ReqType::BulkPut, + ReqType::BulkDelete, ReqType::Commit, ReqType::Rollback, ReqType::Merge, @@ -6474,48 +7436,58 @@ impl ::protobuf::reflect::ProtobufValue for ReqType { } static file_descriptor_proto_data: &'static [u8] = b"\ - \n\x10indexrpcpb.proto\x12\nindexrpcpb\x1a\reraftpb.proto\"\xc2\x03\n\ + \n\x10indexrpcpb.proto\x12\nindexrpcpb\x1a\reraftpb.proto\"\xbf\x04\n\ \x08ApplyReq\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12.\ \n\x08req_type\x18\x02\x20\x01(\x0e2\x13.indexrpcpb.ReqTypeR\x07reqType\ \x12.\n\x08join_req\x18\x03\x20\x01(\x0b2\x13.indexrpcpb.JoinReqR\x07joi\ nReq\x121\n\tleave_req\x18\x04\x20\x01(\x0b2\x14.indexrpcpb.LeaveReqR\ \x08leaveReq\x12+\n\x07put_req\x18\x05\x20\x01(\x0b2\x12.indexrpcpb.PutR\ eqR\x06putReq\x124\n\ndelete_req\x18\x06\x20\x01(\x0b2\x15.indexrpcpb.De\ - leteReqR\tdeleteReq\x124\n\ncommit_req\x18\x07\x20\x01(\x0b2\x15.indexrp\ - cpb.CommitReqR\tcommitReq\x12:\n\x0crollback_req\x18\x08\x20\x01(\x0b2\ - \x17.indexrpcpb.RollbackReqR\x0brollbackReq\x121\n\tmerge_req\x18\t\x20\ - \x01(\x0b2\x14.indexrpcpb.MergeReqR\x08mergeReq\"X\n\rConfChangeReq\x12#\ - \n\x02cc\x18\x01\x20\x01(\x0b2\x13.eraftpb.ConfChangeR\x02cc\x12\x0e\n\ - \x02ip\x18\x02\x20\x01(\tR\x02ip\x12\x12\n\x04port\x18\x03\x20\x01(\rR\ - \x04port\"1\n\x08RaftDone\x12%\n\x03err\x18\x01\x20\x01(\x0e2\x13.indexr\ - pcpb.RespErrR\x03err\"\\\n\x07JoinReq\x12\x1b\n\tclient_id\x18\x01\x20\ - \x01(\x04R\x08clientId\x12\x17\n\x07peer_id\x18\x02\x20\x01(\x04R\x06pee\ - rId\x12\x1b\n\tpeer_addr\x18\x03\x20\x01(\tR\x08peerAddr\"]\n\x08LeaveRe\ - q\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x17\n\x07pe\ - er_id\x18\x02\x20\x01(\x04R\x06peerId\x12\x1b\n\tpeer_addr\x18\x03\x20\ - \x01(\tR\x08peerAddr\"9\n\x08ProbeReq\x12\x1b\n\tclient_id\x18\x01\x20\ - \x01(\x04R\x08clientId\x12\x10\n\x03seq\x18\x02\x20\x01(\x04R\x03seq\"H\ - \n\tProbeResp\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05value\x12%\n\x03\ - err\x18\x02\x20\x01(\x0e2\x13.indexrpcpb.RespErrR\x03err\"9\n\x08PeersRe\ - q\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x10\n\x03se\ - q\x18\x02\x20\x01(\x04R\x03seq\"H\n\tPeersResp\x12\x14\n\x05value\x18\ - \x01\x20\x01(\tR\x05value\x12%\n\x03err\x18\x02\x20\x01(\x0e2\x13.indexr\ - pcpb.RespErrR\x03err\";\n\nMetricsReq\x12\x1b\n\tclient_id\x18\x01\x20\ - \x01(\x04R\x08clientId\x12\x10\n\x03seq\x18\x02\x20\x01(\x04R\x03seq\"J\ - \n\x0bMetricsResp\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05value\x12%\n\ - \x03err\x18\x02\x20\x01(\x0e2\x13.indexrpcpb.RespErrR\x03err\"N\n\x06Get\ - Req\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x10\n\x03\ - seq\x18\x02\x20\x01(\x04R\x03seq\x12\x15\n\x06doc_id\x18\x03\x20\x01(\tR\ - \x05docId\"F\n\x07GetResp\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05valu\ - e\x12%\n\x03err\x18\x02\x20\x01(\x0e2\x13.indexrpcpb.RespErrR\x03err\"f\ - \n\x06PutReq\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\ - \x10\n\x03seq\x18\x02\x20\x01(\x04R\x03seq\x12\x15\n\x06doc_id\x18\x03\ - \x20\x01(\tR\x05docId\x12\x16\n\x06fields\x18\x04\x20\x01(\tR\x06fields\ - \"F\n\x07PutResp\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05value\x12%\n\ - \x03err\x18\x02\x20\x01(\x0e2\x13.indexrpcpb.RespErrR\x03err\"Q\n\tDelet\ - eReq\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x10\n\ - \x03seq\x18\x02\x20\x01(\x04R\x03seq\x12\x15\n\x06doc_id\x18\x03\x20\x01\ - (\tR\x05docId\"I\n\nDeleteResp\x12\x14\n\x05value\x18\x01\x20\x01(\tR\ + leteReqR\tdeleteReq\x128\n\x0cbulk_put_req\x18\x07\x20\x01(\x0b2\x16.ind\ + exrpcpb.BulkPutReqR\nbulkPutReq\x12A\n\x0fbulk_delete_req\x18\x08\x20\ + \x01(\x0b2\x19.indexrpcpb.BulkDeleteReqR\rbulkDeleteReq\x124\n\ncommit_r\ + eq\x18\t\x20\x01(\x0b2\x15.indexrpcpb.CommitReqR\tcommitReq\x12:\n\x0cro\ + llback_req\x18\n\x20\x01(\x0b2\x17.indexrpcpb.RollbackReqR\x0brollbackRe\ + q\x121\n\tmerge_req\x18\x0b\x20\x01(\x0b2\x14.indexrpcpb.MergeReqR\x08me\ + rgeReq\"X\n\rConfChangeReq\x12#\n\x02cc\x18\x01\x20\x01(\x0b2\x13.eraftp\ + b.ConfChangeR\x02cc\x12\x0e\n\x02ip\x18\x02\x20\x01(\tR\x02ip\x12\x12\n\ + \x04port\x18\x03\x20\x01(\rR\x04port\"1\n\x08RaftDone\x12%\n\x03err\x18\ + \x01\x20\x01(\x0e2\x13.indexrpcpb.RespErrR\x03err\"\\\n\x07JoinReq\x12\ + \x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x17\n\x07peer_id\ + \x18\x02\x20\x01(\x04R\x06peerId\x12\x1b\n\tpeer_addr\x18\x03\x20\x01(\t\ + R\x08peerAddr\"]\n\x08LeaveReq\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04\ + R\x08clientId\x12\x17\n\x07peer_id\x18\x02\x20\x01(\x04R\x06peerId\x12\ + \x1b\n\tpeer_addr\x18\x03\x20\x01(\tR\x08peerAddr\"9\n\x08ProbeReq\x12\ + \x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x10\n\x03seq\x18\ + \x02\x20\x01(\x04R\x03seq\"H\n\tProbeResp\x12\x14\n\x05value\x18\x01\x20\ + \x01(\tR\x05value\x12%\n\x03err\x18\x02\x20\x01(\x0e2\x13.indexrpcpb.Res\ + pErrR\x03err\"9\n\x08PeersReq\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\ + \x08clientId\x12\x10\n\x03seq\x18\x02\x20\x01(\x04R\x03seq\"H\n\tPeersRe\ + sp\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05value\x12%\n\x03err\x18\x02\ + \x20\x01(\x0e2\x13.indexrpcpb.RespErrR\x03err\";\n\nMetricsReq\x12\x1b\n\ + \tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x10\n\x03seq\x18\x02\ + \x20\x01(\x04R\x03seq\"J\n\x0bMetricsResp\x12\x14\n\x05value\x18\x01\x20\ + \x01(\tR\x05value\x12%\n\x03err\x18\x02\x20\x01(\x0e2\x13.indexrpcpb.Res\ + pErrR\x03err\"N\n\x06GetReq\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\ + \x08clientId\x12\x10\n\x03seq\x18\x02\x20\x01(\x04R\x03seq\x12\x15\n\x06\ + doc_id\x18\x03\x20\x01(\tR\x05docId\"F\n\x07GetResp\x12\x14\n\x05value\ + \x18\x01\x20\x01(\tR\x05value\x12%\n\x03err\x18\x02\x20\x01(\x0e2\x13.in\ + dexrpcpb.RespErrR\x03err\"I\n\x06PutReq\x12\x1b\n\tclient_id\x18\x01\x20\ + \x01(\x04R\x08clientId\x12\x10\n\x03seq\x18\x02\x20\x01(\x04R\x03seq\x12\ + \x10\n\x03doc\x18\x03\x20\x01(\tR\x03doc\"F\n\x07PutResp\x12\x14\n\x05va\ + lue\x18\x01\x20\x01(\tR\x05value\x12%\n\x03err\x18\x02\x20\x01(\x0e2\x13\ + .indexrpcpb.RespErrR\x03err\"Q\n\tDeleteReq\x12\x1b\n\tclient_id\x18\x01\ + \x20\x01(\x04R\x08clientId\x12\x10\n\x03seq\x18\x02\x20\x01(\x04R\x03seq\ + \x12\x15\n\x06doc_id\x18\x03\x20\x01(\tR\x05docId\"I\n\nDeleteResp\x12\ + \x14\n\x05value\x18\x01\x20\x01(\tR\x05value\x12%\n\x03err\x18\x02\x20\ + \x01(\x0e2\x13.indexrpcpb.RespErrR\x03err\"O\n\nBulkPutReq\x12\x1b\n\tcl\ + ient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x10\n\x03seq\x18\x02\x20\ + \x01(\x04R\x03seq\x12\x12\n\x04docs\x18\x03\x20\x01(\tR\x04docs\"J\n\x0b\ + BulkPutResp\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05value\x12%\n\x03er\ + r\x18\x02\x20\x01(\x0e2\x13.indexrpcpb.RespErrR\x03err\"R\n\rBulkDeleteR\ + eq\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x10\n\x03s\ + eq\x18\x02\x20\x01(\x04R\x03seq\x12\x12\n\x04docs\x18\x03\x20\x01(\tR\ + \x04docs\"M\n\x0eBulkDeleteResp\x12\x14\n\x05value\x18\x01\x20\x01(\tR\ \x05value\x12%\n\x03err\x18\x02\x20\x01(\x0e2\x13.indexrpcpb.RespErrR\ \x03err\":\n\tCommitReq\x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08cl\ ientId\x12\x10\n\x03seq\x18\x02\x20\x01(\x04R\x03seq\"I\n\nCommitResp\ @@ -6540,20 +7512,22 @@ static file_descriptor_proto_data: &'static [u8] = b"\ \x12\x1b\n\tclient_id\x18\x01\x20\x01(\x04R\x08clientId\x12\x10\n\x03seq\ \x18\x02\x20\x01(\x04R\x03seq\"I\n\nSchemaResp\x12\x14\n\x05value\x18\ \x01\x20\x01(\tR\x05value\x12%\n\x03err\x18\x02\x20\x01(\x0e2\x13.indexr\ - pcpb.RespErrR\x03err*\x85\x02\n\x07RespErr\x12\x06\n\x02OK\x10\0\x12\x12\ + pcpb.RespErrR\x03err*\xb4\x02\n\x07RespErr\x12\x06\n\x02OK\x10\0\x12\x12\ \n\x0eErrWrongLeader\x10\x01\x12\x12\n\x0eErrProbeFailed\x10\x02\x12\x11\ \n\rErrPeerFailed\x10\x03\x12\x14\n\x10ErrMetricsFailed\x10\x04\x12\x10\ \n\x0cErrGetFailed\x10\x05\x12\x10\n\x0cErrPutFailed\x10\x06\x12\x13\n\ - \x0fErrDeleteFailed\x10\x07\x12\x13\n\x0fErrCommitFailed\x10\x08\x12\x15\ - \n\x11ErrRollbackFailed\x10\t\x12\x12\n\x0eErrMergeFailed\x10\n\x12\x13\ - \n\x0fErrSearchFailed\x10\x0b\x12\x13\n\x0fErrSchemaFailed\x10\x0c*X\n\ - \x07ReqType\x12\x08\n\x04Join\x10\0\x12\t\n\x05Leave\x10\x01\x12\x07\n\ - \x03Put\x10\x02\x12\n\n\x06Delete\x10\x03\x12\n\n\x06Commit\x10\x04\x12\ - \x0c\n\x08Rollback\x10\x05\x12\t\n\x05Merge\x10\x06J\xc66\n\x07\x12\x05\ - \0\0\xba\x01\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\n\x08\n\x01\x02\x12\x03\ - \x01\0\x13\n\t\n\x02\x03\0\x12\x03\x03\0\x17\n\n\n\x02\x05\0\x12\x04\x05\ - \0\x14\x01\n\n\n\x03\x05\0\x01\x12\x03\x05\x05\x0c\n\x0b\n\x04\x05\0\x02\ - \0\x12\x03\x06\x04\x0b\n\x0c\n\x05\x05\0\x02\0\x01\x12\x03\x06\x04\x06\n\ + \x0fErrDeleteFailed\x10\x07\x12\x14\n\x10ErrBulkPutFailed\x10\x08\x12\ + \x17\n\x13ErrBulkDeleteFailed\x10\t\x12\x13\n\x0fErrCommitFailed\x10\n\ + \x12\x15\n\x11ErrRollbackFailed\x10\x0b\x12\x12\n\x0eErrMergeFailed\x10\ + \x0c\x12\x13\n\x0fErrSearchFailed\x10\r\x12\x13\n\x0fErrSchemaFailed\x10\ + \x0e*u\n\x07ReqType\x12\x08\n\x04Join\x10\0\x12\t\n\x05Leave\x10\x01\x12\ + \x07\n\x03Put\x10\x02\x12\n\n\x06Delete\x10\x03\x12\x0b\n\x07BulkPut\x10\ + \x04\x12\x0e\n\nBulkDelete\x10\x05\x12\n\n\x06Commit\x10\x06\x12\x0c\n\ + \x08Rollback\x10\x07\x12\t\n\x05Merge\x10\x08J\xeb>\n\x07\x12\x05\0\0\ + \xd3\x01\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\n\x08\n\x01\x02\x12\x03\x01\ + \0\x13\n\t\n\x02\x03\0\x12\x03\x03\0\x17\n\n\n\x02\x05\0\x12\x04\x05\0\ + \x15\x01\n\n\n\x03\x05\0\x01\x12\x03\x05\x05\x0c\n\x0b\n\x04\x05\0\x02\0\ + \x12\x03\x06\x04\x0b\n\x0c\n\x05\x05\0\x02\0\x01\x12\x03\x06\x04\x06\n\ \x0c\n\x05\x05\0\x02\0\x02\x12\x03\x06\t\n\n\x0b\n\x04\x05\0\x02\x01\x12\ \x03\x07\x04\x17\n\x0c\n\x05\x05\0\x02\x01\x01\x12\x03\x07\x04\x12\n\x0c\ \n\x05\x05\0\x02\x01\x02\x12\x03\x07\x15\x16\n\x0b\n\x04\x05\0\x02\x02\ @@ -6569,322 +7543,377 @@ static file_descriptor_proto_data: &'static [u8] = b"\ \x0c\n\x05\x05\0\x02\x06\x02\x12\x03\x0c\x13\x14\n\x0b\n\x04\x05\0\x02\ \x07\x12\x03\r\x04\x18\n\x0c\n\x05\x05\0\x02\x07\x01\x12\x03\r\x04\x13\n\ \x0c\n\x05\x05\0\x02\x07\x02\x12\x03\r\x16\x17\n\x0b\n\x04\x05\0\x02\x08\ - \x12\x03\x0e\x04\x18\n\x0c\n\x05\x05\0\x02\x08\x01\x12\x03\x0e\x04\x13\n\ - \x0c\n\x05\x05\0\x02\x08\x02\x12\x03\x0e\x16\x17\n\x0b\n\x04\x05\0\x02\t\ - \x12\x03\x0f\x04\x1a\n\x0c\n\x05\x05\0\x02\t\x01\x12\x03\x0f\x04\x15\n\ - \x0c\n\x05\x05\0\x02\t\x02\x12\x03\x0f\x18\x19\n\x0b\n\x04\x05\0\x02\n\ - \x12\x03\x10\x04\x18\n\x0c\n\x05\x05\0\x02\n\x01\x12\x03\x10\x04\x12\n\ - \x0c\n\x05\x05\0\x02\n\x02\x12\x03\x10\x15\x17\n\x0b\n\x04\x05\0\x02\x0b\ - \x12\x03\x11\x04\x19\n\x0c\n\x05\x05\0\x02\x0b\x01\x12\x03\x11\x04\x13\n\ - \x0c\n\x05\x05\0\x02\x0b\x02\x12\x03\x11\x16\x18\n\x1f\n\x04\x05\0\x02\ - \x0c\x12\x03\x12\x04\x19\"\x12\x20\x20\x20\x20ErrNoKey\x20=\x202;\n\n\ - \x0c\n\x05\x05\0\x02\x0c\x01\x12\x03\x12\x04\x13\n\x0c\n\x05\x05\0\x02\ - \x0c\x02\x12\x03\x12\x16\x18\n\n\n\x02\x05\x01\x12\x04\x16\0\x1e\x01\n\n\ - \n\x03\x05\x01\x01\x12\x03\x16\x05\x0c\n\x0b\n\x04\x05\x01\x02\0\x12\x03\ - \x17\x04\r\n\x0c\n\x05\x05\x01\x02\0\x01\x12\x03\x17\x04\x08\n\x0c\n\x05\ - \x05\x01\x02\0\x02\x12\x03\x17\x0b\x0c\n\x0b\n\x04\x05\x01\x02\x01\x12\ - \x03\x18\x04\x0e\n\x0c\n\x05\x05\x01\x02\x01\x01\x12\x03\x18\x04\t\n\x0c\ - \n\x05\x05\x01\x02\x01\x02\x12\x03\x18\x0c\r\n\x0b\n\x04\x05\x01\x02\x02\ - \x12\x03\x19\x04\x0c\n\x0c\n\x05\x05\x01\x02\x02\x01\x12\x03\x19\x04\x07\ - \n\x0c\n\x05\x05\x01\x02\x02\x02\x12\x03\x19\n\x0b\n\x0b\n\x04\x05\x01\ - \x02\x03\x12\x03\x1a\x04\x0f\n\x0c\n\x05\x05\x01\x02\x03\x01\x12\x03\x1a\ - \x04\n\n\x0c\n\x05\x05\x01\x02\x03\x02\x12\x03\x1a\r\x0e\n\x0b\n\x04\x05\ - \x01\x02\x04\x12\x03\x1b\x04\x0f\n\x0c\n\x05\x05\x01\x02\x04\x01\x12\x03\ - \x1b\x04\n\n\x0c\n\x05\x05\x01\x02\x04\x02\x12\x03\x1b\r\x0e\n\x0b\n\x04\ - \x05\x01\x02\x05\x12\x03\x1c\x04\x11\n\x0c\n\x05\x05\x01\x02\x05\x01\x12\ - \x03\x1c\x04\x0c\n\x0c\n\x05\x05\x01\x02\x05\x02\x12\x03\x1c\x0f\x10\n\ - \x0b\n\x04\x05\x01\x02\x06\x12\x03\x1d\x04\x0e\n\x0c\n\x05\x05\x01\x02\ - \x06\x01\x12\x03\x1d\x04\t\n\x0c\n\x05\x05\x01\x02\x06\x02\x12\x03\x1d\ - \x0c\r\n\n\n\x02\x04\0\x12\x04\x20\0*\x01\n\n\n\x03\x04\0\x01\x12\x03\ - \x20\x08\x10\n\x0b\n\x04\x04\0\x02\0\x12\x03!\x04\x19\n\r\n\x05\x04\0\ - \x02\0\x04\x12\x04!\x04\x20\x12\n\x0c\n\x05\x04\0\x02\0\x05\x12\x03!\x04\ - \n\n\x0c\n\x05\x04\0\x02\0\x01\x12\x03!\x0b\x14\n\x0c\n\x05\x04\0\x02\0\ - \x03\x12\x03!\x17\x18\n\x0b\n\x04\x04\0\x02\x01\x12\x03\"\x04\x19\n\r\n\ - \x05\x04\0\x02\x01\x04\x12\x04\"\x04!\x19\n\x0c\n\x05\x04\0\x02\x01\x06\ - \x12\x03\"\x04\x0b\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\"\x0c\x14\n\x0c\ - \n\x05\x04\0\x02\x01\x03\x12\x03\"\x17\x18\n\x0b\n\x04\x04\0\x02\x02\x12\ - \x03#\x04\x19\n\r\n\x05\x04\0\x02\x02\x04\x12\x04#\x04\"\x19\n\x0c\n\x05\ - \x04\0\x02\x02\x06\x12\x03#\x04\x0b\n\x0c\n\x05\x04\0\x02\x02\x01\x12\ - \x03#\x0c\x14\n\x0c\n\x05\x04\0\x02\x02\x03\x12\x03#\x17\x18\n\x0b\n\x04\ - \x04\0\x02\x03\x12\x03$\x04\x1b\n\r\n\x05\x04\0\x02\x03\x04\x12\x04$\x04\ - #\x19\n\x0c\n\x05\x04\0\x02\x03\x06\x12\x03$\x04\x0c\n\x0c\n\x05\x04\0\ - \x02\x03\x01\x12\x03$\r\x16\n\x0c\n\x05\x04\0\x02\x03\x03\x12\x03$\x19\ - \x1a\n\x0b\n\x04\x04\0\x02\x04\x12\x03%\x04\x17\n\r\n\x05\x04\0\x02\x04\ - \x04\x12\x04%\x04$\x1b\n\x0c\n\x05\x04\0\x02\x04\x06\x12\x03%\x04\n\n\ - \x0c\n\x05\x04\0\x02\x04\x01\x12\x03%\x0b\x12\n\x0c\n\x05\x04\0\x02\x04\ - \x03\x12\x03%\x15\x16\n\x0b\n\x04\x04\0\x02\x05\x12\x03&\x04\x1d\n\r\n\ - \x05\x04\0\x02\x05\x04\x12\x04&\x04%\x17\n\x0c\n\x05\x04\0\x02\x05\x06\ - \x12\x03&\x04\r\n\x0c\n\x05\x04\0\x02\x05\x01\x12\x03&\x0e\x18\n\x0c\n\ - \x05\x04\0\x02\x05\x03\x12\x03&\x1b\x1c\n\x0b\n\x04\x04\0\x02\x06\x12\ - \x03'\x04\x1d\n\r\n\x05\x04\0\x02\x06\x04\x12\x04'\x04&\x1d\n\x0c\n\x05\ - \x04\0\x02\x06\x06\x12\x03'\x04\r\n\x0c\n\x05\x04\0\x02\x06\x01\x12\x03'\ - \x0e\x18\n\x0c\n\x05\x04\0\x02\x06\x03\x12\x03'\x1b\x1c\n\x0b\n\x04\x04\ - \0\x02\x07\x12\x03(\x04!\n\r\n\x05\x04\0\x02\x07\x04\x12\x04(\x04'\x1d\n\ - \x0c\n\x05\x04\0\x02\x07\x06\x12\x03(\x04\x0f\n\x0c\n\x05\x04\0\x02\x07\ - \x01\x12\x03(\x10\x1c\n\x0c\n\x05\x04\0\x02\x07\x03\x12\x03(\x1f\x20\n\ - \x0b\n\x04\x04\0\x02\x08\x12\x03)\x04\x1b\n\r\n\x05\x04\0\x02\x08\x04\ - \x12\x04)\x04(!\n\x0c\n\x05\x04\0\x02\x08\x06\x12\x03)\x04\x0c\n\x0c\n\ - \x05\x04\0\x02\x08\x01\x12\x03)\r\x16\n\x0c\n\x05\x04\0\x02\x08\x03\x12\ - \x03)\x19\x1a\n\n\n\x02\x04\x01\x12\x04,\00\x01\n\n\n\x03\x04\x01\x01\ - \x12\x03,\x08\x15\n\x0b\n\x04\x04\x01\x02\0\x12\x03-\x04\x1e\n\r\n\x05\ - \x04\x01\x02\0\x04\x12\x04-\x04,\x17\n\x0c\n\x05\x04\x01\x02\0\x06\x12\ - \x03-\x04\x16\n\x0c\n\x05\x04\x01\x02\0\x01\x12\x03-\x17\x19\n\x0c\n\x05\ - \x04\x01\x02\0\x03\x12\x03-\x1c\x1d\n\x0b\n\x04\x04\x01\x02\x01\x12\x03.\ - \x04\x12\n\r\n\x05\x04\x01\x02\x01\x04\x12\x04.\x04-\x1e\n\x0c\n\x05\x04\ - \x01\x02\x01\x05\x12\x03.\x04\n\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03.\ - \x0b\r\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03.\x10\x11\n\x0b\n\x04\x04\ - \x01\x02\x02\x12\x03/\x04\x14\n\r\n\x05\x04\x01\x02\x02\x04\x12\x04/\x04\ - .\x12\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03/\x04\n\n\x0c\n\x05\x04\x01\ - \x02\x02\x01\x12\x03/\x0b\x0f\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03/\ - \x12\x13\n\n\n\x02\x04\x02\x12\x042\04\x01\n\n\n\x03\x04\x02\x01\x12\x03\ - 2\x08\x10\n\x0b\n\x04\x04\x02\x02\0\x12\x033\x04\x14\n\r\n\x05\x04\x02\ - \x02\0\x04\x12\x043\x042\x12\n\x0c\n\x05\x04\x02\x02\0\x06\x12\x033\x04\ - \x0b\n\x0c\n\x05\x04\x02\x02\0\x01\x12\x033\x0c\x0f\n\x0c\n\x05\x04\x02\ - \x02\0\x03\x12\x033\x12\x13\n\n\n\x02\x04\x03\x12\x046\0:\x01\n\n\n\x03\ - \x04\x03\x01\x12\x036\x08\x0f\n\x0b\n\x04\x04\x03\x02\0\x12\x037\x04\x19\ - \n\r\n\x05\x04\x03\x02\0\x04\x12\x047\x046\x11\n\x0c\n\x05\x04\x03\x02\0\ - \x05\x12\x037\x04\n\n\x0c\n\x05\x04\x03\x02\0\x01\x12\x037\x0b\x14\n\x0c\ - \n\x05\x04\x03\x02\0\x03\x12\x037\x17\x18\n\x0b\n\x04\x04\x03\x02\x01\ - \x12\x038\x04\x17\n\r\n\x05\x04\x03\x02\x01\x04\x12\x048\x047\x19\n\x0c\ - \n\x05\x04\x03\x02\x01\x05\x12\x038\x04\n\n\x0c\n\x05\x04\x03\x02\x01\ - \x01\x12\x038\x0b\x12\n\x0c\n\x05\x04\x03\x02\x01\x03\x12\x038\x15\x16\n\ - \x0b\n\x04\x04\x03\x02\x02\x12\x039\x04\x19\n\r\n\x05\x04\x03\x02\x02\ - \x04\x12\x049\x048\x17\n\x0c\n\x05\x04\x03\x02\x02\x05\x12\x039\x04\n\n\ - \x0c\n\x05\x04\x03\x02\x02\x01\x12\x039\x0b\x14\n\x0c\n\x05\x04\x03\x02\ - \x02\x03\x12\x039\x17\x18\n\n\n\x02\x04\x04\x12\x04<\0@\x01\n\n\n\x03\ - \x04\x04\x01\x12\x03<\x08\x10\n\x0b\n\x04\x04\x04\x02\0\x12\x03=\x04\x19\ - \n\r\n\x05\x04\x04\x02\0\x04\x12\x04=\x04<\x12\n\x0c\n\x05\x04\x04\x02\0\ - \x05\x12\x03=\x04\n\n\x0c\n\x05\x04\x04\x02\0\x01\x12\x03=\x0b\x14\n\x0c\ - \n\x05\x04\x04\x02\0\x03\x12\x03=\x17\x18\n\x0b\n\x04\x04\x04\x02\x01\ - \x12\x03>\x04\x17\n\r\n\x05\x04\x04\x02\x01\x04\x12\x04>\x04=\x19\n\x0c\ - \n\x05\x04\x04\x02\x01\x05\x12\x03>\x04\n\n\x0c\n\x05\x04\x04\x02\x01\ - \x01\x12\x03>\x0b\x12\n\x0c\n\x05\x04\x04\x02\x01\x03\x12\x03>\x15\x16\n\ - \x0b\n\x04\x04\x04\x02\x02\x12\x03?\x04\x19\n\r\n\x05\x04\x04\x02\x02\ - \x04\x12\x04?\x04>\x17\n\x0c\n\x05\x04\x04\x02\x02\x05\x12\x03?\x04\n\n\ - \x0c\n\x05\x04\x04\x02\x02\x01\x12\x03?\x0b\x14\n\x0c\n\x05\x04\x04\x02\ - \x02\x03\x12\x03?\x17\x18\n\n\n\x02\x04\x05\x12\x04B\0E\x01\n\n\n\x03\ - \x04\x05\x01\x12\x03B\x08\x10\n\x0b\n\x04\x04\x05\x02\0\x12\x03C\x04\x19\ - \n\r\n\x05\x04\x05\x02\0\x04\x12\x04C\x04B\x12\n\x0c\n\x05\x04\x05\x02\0\ - \x05\x12\x03C\x04\n\n\x0c\n\x05\x04\x05\x02\0\x01\x12\x03C\x0b\x14\n\x0c\ - \n\x05\x04\x05\x02\0\x03\x12\x03C\x17\x18\n\x0b\n\x04\x04\x05\x02\x01\ - \x12\x03D\x04\x13\n\r\n\x05\x04\x05\x02\x01\x04\x12\x04D\x04C\x19\n\x0c\ - \n\x05\x04\x05\x02\x01\x05\x12\x03D\x04\n\n\x0c\n\x05\x04\x05\x02\x01\ - \x01\x12\x03D\x0b\x0e\n\x0c\n\x05\x04\x05\x02\x01\x03\x12\x03D\x11\x12\n\ - \n\n\x02\x04\x06\x12\x04G\0J\x01\n\n\n\x03\x04\x06\x01\x12\x03G\x08\x11\ - \n\x0b\n\x04\x04\x06\x02\0\x12\x03H\x04\x15\n\r\n\x05\x04\x06\x02\0\x04\ - \x12\x04H\x04G\x13\n\x0c\n\x05\x04\x06\x02\0\x05\x12\x03H\x04\n\n\x0c\n\ - \x05\x04\x06\x02\0\x01\x12\x03H\x0b\x10\n\x0c\n\x05\x04\x06\x02\0\x03\ - \x12\x03H\x13\x14\n\x0b\n\x04\x04\x06\x02\x01\x12\x03I\x04\x14\n\r\n\x05\ - \x04\x06\x02\x01\x04\x12\x04I\x04H\x15\n\x0c\n\x05\x04\x06\x02\x01\x06\ - \x12\x03I\x04\x0b\n\x0c\n\x05\x04\x06\x02\x01\x01\x12\x03I\x0c\x0f\n\x0c\ - \n\x05\x04\x06\x02\x01\x03\x12\x03I\x12\x13\n\n\n\x02\x04\x07\x12\x04L\0\ - O\x01\n\n\n\x03\x04\x07\x01\x12\x03L\x08\x10\n\x0b\n\x04\x04\x07\x02\0\ - \x12\x03M\x04\x19\n\r\n\x05\x04\x07\x02\0\x04\x12\x04M\x04L\x12\n\x0c\n\ - \x05\x04\x07\x02\0\x05\x12\x03M\x04\n\n\x0c\n\x05\x04\x07\x02\0\x01\x12\ - \x03M\x0b\x14\n\x0c\n\x05\x04\x07\x02\0\x03\x12\x03M\x17\x18\n\x0b\n\x04\ - \x04\x07\x02\x01\x12\x03N\x04\x13\n\r\n\x05\x04\x07\x02\x01\x04\x12\x04N\ - \x04M\x19\n\x0c\n\x05\x04\x07\x02\x01\x05\x12\x03N\x04\n\n\x0c\n\x05\x04\ - \x07\x02\x01\x01\x12\x03N\x0b\x0e\n\x0c\n\x05\x04\x07\x02\x01\x03\x12\ - \x03N\x11\x12\n\n\n\x02\x04\x08\x12\x04Q\0T\x01\n\n\n\x03\x04\x08\x01\ - \x12\x03Q\x08\x11\n\x0b\n\x04\x04\x08\x02\0\x12\x03R\x04\x15\n\r\n\x05\ - \x04\x08\x02\0\x04\x12\x04R\x04Q\x13\n\x0c\n\x05\x04\x08\x02\0\x05\x12\ - \x03R\x04\n\n\x0c\n\x05\x04\x08\x02\0\x01\x12\x03R\x0b\x10\n\x0c\n\x05\ - \x04\x08\x02\0\x03\x12\x03R\x13\x14\n\x0b\n\x04\x04\x08\x02\x01\x12\x03S\ - \x04\x14\n\r\n\x05\x04\x08\x02\x01\x04\x12\x04S\x04R\x15\n\x0c\n\x05\x04\ - \x08\x02\x01\x06\x12\x03S\x04\x0b\n\x0c\n\x05\x04\x08\x02\x01\x01\x12\ - \x03S\x0c\x0f\n\x0c\n\x05\x04\x08\x02\x01\x03\x12\x03S\x12\x13\n\n\n\x02\ - \x04\t\x12\x04V\0Y\x01\n\n\n\x03\x04\t\x01\x12\x03V\x08\x12\n\x0b\n\x04\ - \x04\t\x02\0\x12\x03W\x04\x19\n\r\n\x05\x04\t\x02\0\x04\x12\x04W\x04V\ - \x14\n\x0c\n\x05\x04\t\x02\0\x05\x12\x03W\x04\n\n\x0c\n\x05\x04\t\x02\0\ - \x01\x12\x03W\x0b\x14\n\x0c\n\x05\x04\t\x02\0\x03\x12\x03W\x17\x18\n\x0b\ - \n\x04\x04\t\x02\x01\x12\x03X\x04\x13\n\r\n\x05\x04\t\x02\x01\x04\x12\ - \x04X\x04W\x19\n\x0c\n\x05\x04\t\x02\x01\x05\x12\x03X\x04\n\n\x0c\n\x05\ - \x04\t\x02\x01\x01\x12\x03X\x0b\x0e\n\x0c\n\x05\x04\t\x02\x01\x03\x12\ - \x03X\x11\x12\n\n\n\x02\x04\n\x12\x04[\0^\x01\n\n\n\x03\x04\n\x01\x12\ - \x03[\x08\x13\n\x0b\n\x04\x04\n\x02\0\x12\x03\\\x04\x15\n\r\n\x05\x04\n\ - \x02\0\x04\x12\x04\\\x04[\x15\n\x0c\n\x05\x04\n\x02\0\x05\x12\x03\\\x04\ - \n\n\x0c\n\x05\x04\n\x02\0\x01\x12\x03\\\x0b\x10\n\x0c\n\x05\x04\n\x02\0\ - \x03\x12\x03\\\x13\x14\n\x0b\n\x04\x04\n\x02\x01\x12\x03]\x04\x14\n\r\n\ - \x05\x04\n\x02\x01\x04\x12\x04]\x04\\\x15\n\x0c\n\x05\x04\n\x02\x01\x06\ - \x12\x03]\x04\x0b\n\x0c\n\x05\x04\n\x02\x01\x01\x12\x03]\x0c\x0f\n\x0c\n\ - \x05\x04\n\x02\x01\x03\x12\x03]\x12\x13\n\n\n\x02\x04\x0b\x12\x04`\0d\ - \x01\n\n\n\x03\x04\x0b\x01\x12\x03`\x08\x0e\n\x0b\n\x04\x04\x0b\x02\0\ - \x12\x03a\x04\x19\n\r\n\x05\x04\x0b\x02\0\x04\x12\x04a\x04`\x10\n\x0c\n\ - \x05\x04\x0b\x02\0\x05\x12\x03a\x04\n\n\x0c\n\x05\x04\x0b\x02\0\x01\x12\ - \x03a\x0b\x14\n\x0c\n\x05\x04\x0b\x02\0\x03\x12\x03a\x17\x18\n\x0b\n\x04\ - \x04\x0b\x02\x01\x12\x03b\x04\x13\n\r\n\x05\x04\x0b\x02\x01\x04\x12\x04b\ - \x04a\x19\n\x0c\n\x05\x04\x0b\x02\x01\x05\x12\x03b\x04\n\n\x0c\n\x05\x04\ - \x0b\x02\x01\x01\x12\x03b\x0b\x0e\n\x0c\n\x05\x04\x0b\x02\x01\x03\x12\ - \x03b\x11\x12\n\x0b\n\x04\x04\x0b\x02\x02\x12\x03c\x04\x16\n\r\n\x05\x04\ - \x0b\x02\x02\x04\x12\x04c\x04b\x13\n\x0c\n\x05\x04\x0b\x02\x02\x05\x12\ - \x03c\x04\n\n\x0c\n\x05\x04\x0b\x02\x02\x01\x12\x03c\x0b\x11\n\x0c\n\x05\ - \x04\x0b\x02\x02\x03\x12\x03c\x14\x15\n\n\n\x02\x04\x0c\x12\x04f\0i\x01\ - \n\n\n\x03\x04\x0c\x01\x12\x03f\x08\x0f\n\x0b\n\x04\x04\x0c\x02\0\x12\ - \x03g\x04\x15\n\r\n\x05\x04\x0c\x02\0\x04\x12\x04g\x04f\x11\n\x0c\n\x05\ - \x04\x0c\x02\0\x05\x12\x03g\x04\n\n\x0c\n\x05\x04\x0c\x02\0\x01\x12\x03g\ - \x0b\x10\n\x0c\n\x05\x04\x0c\x02\0\x03\x12\x03g\x13\x14\n\x0b\n\x04\x04\ - \x0c\x02\x01\x12\x03h\x04\x14\n\r\n\x05\x04\x0c\x02\x01\x04\x12\x04h\x04\ - g\x15\n\x0c\n\x05\x04\x0c\x02\x01\x06\x12\x03h\x04\x0b\n\x0c\n\x05\x04\ - \x0c\x02\x01\x01\x12\x03h\x0c\x0f\n\x0c\n\x05\x04\x0c\x02\x01\x03\x12\ - \x03h\x12\x13\n\n\n\x02\x04\r\x12\x04k\0p\x01\n\n\n\x03\x04\r\x01\x12\ - \x03k\x08\x0e\n\x0b\n\x04\x04\r\x02\0\x12\x03l\x04\x19\n\r\n\x05\x04\r\ - \x02\0\x04\x12\x04l\x04k\x10\n\x0c\n\x05\x04\r\x02\0\x05\x12\x03l\x04\n\ - \n\x0c\n\x05\x04\r\x02\0\x01\x12\x03l\x0b\x14\n\x0c\n\x05\x04\r\x02\0\ - \x03\x12\x03l\x17\x18\n\x0b\n\x04\x04\r\x02\x01\x12\x03m\x04\x13\n\r\n\ - \x05\x04\r\x02\x01\x04\x12\x04m\x04l\x19\n\x0c\n\x05\x04\r\x02\x01\x05\ - \x12\x03m\x04\n\n\x0c\n\x05\x04\r\x02\x01\x01\x12\x03m\x0b\x0e\n\x0c\n\ - \x05\x04\r\x02\x01\x03\x12\x03m\x11\x12\n\x0b\n\x04\x04\r\x02\x02\x12\ - \x03n\x04\x16\n\r\n\x05\x04\r\x02\x02\x04\x12\x04n\x04m\x13\n\x0c\n\x05\ - \x04\r\x02\x02\x05\x12\x03n\x04\n\n\x0c\n\x05\x04\r\x02\x02\x01\x12\x03n\ - \x0b\x11\n\x0c\n\x05\x04\r\x02\x02\x03\x12\x03n\x14\x15\n\x0b\n\x04\x04\ - \r\x02\x03\x12\x03o\x04\x16\n\r\n\x05\x04\r\x02\x03\x04\x12\x04o\x04n\ - \x16\n\x0c\n\x05\x04\r\x02\x03\x05\x12\x03o\x04\n\n\x0c\n\x05\x04\r\x02\ - \x03\x01\x12\x03o\x0b\x11\n\x0c\n\x05\x04\r\x02\x03\x03\x12\x03o\x14\x15\ - \n\n\n\x02\x04\x0e\x12\x04r\0u\x01\n\n\n\x03\x04\x0e\x01\x12\x03r\x08\ - \x0f\n\x0b\n\x04\x04\x0e\x02\0\x12\x03s\x04\x15\n\r\n\x05\x04\x0e\x02\0\ - \x04\x12\x04s\x04r\x11\n\x0c\n\x05\x04\x0e\x02\0\x05\x12\x03s\x04\n\n\ - \x0c\n\x05\x04\x0e\x02\0\x01\x12\x03s\x0b\x10\n\x0c\n\x05\x04\x0e\x02\0\ - \x03\x12\x03s\x13\x14\n\x0b\n\x04\x04\x0e\x02\x01\x12\x03t\x04\x14\n\r\n\ - \x05\x04\x0e\x02\x01\x04\x12\x04t\x04s\x15\n\x0c\n\x05\x04\x0e\x02\x01\ - \x06\x12\x03t\x04\x0b\n\x0c\n\x05\x04\x0e\x02\x01\x01\x12\x03t\x0c\x0f\n\ - \x0c\n\x05\x04\x0e\x02\x01\x03\x12\x03t\x12\x13\n\n\n\x02\x04\x0f\x12\ - \x04w\0{\x01\n\n\n\x03\x04\x0f\x01\x12\x03w\x08\x11\n\x0b\n\x04\x04\x0f\ - \x02\0\x12\x03x\x04\x19\n\r\n\x05\x04\x0f\x02\0\x04\x12\x04x\x04w\x13\n\ - \x0c\n\x05\x04\x0f\x02\0\x05\x12\x03x\x04\n\n\x0c\n\x05\x04\x0f\x02\0\ - \x01\x12\x03x\x0b\x14\n\x0c\n\x05\x04\x0f\x02\0\x03\x12\x03x\x17\x18\n\ - \x0b\n\x04\x04\x0f\x02\x01\x12\x03y\x04\x13\n\r\n\x05\x04\x0f\x02\x01\ - \x04\x12\x04y\x04x\x19\n\x0c\n\x05\x04\x0f\x02\x01\x05\x12\x03y\x04\n\n\ - \x0c\n\x05\x04\x0f\x02\x01\x01\x12\x03y\x0b\x0e\n\x0c\n\x05\x04\x0f\x02\ - \x01\x03\x12\x03y\x11\x12\n\x0b\n\x04\x04\x0f\x02\x02\x12\x03z\x04\x16\n\ - \r\n\x05\x04\x0f\x02\x02\x04\x12\x04z\x04y\x13\n\x0c\n\x05\x04\x0f\x02\ - \x02\x05\x12\x03z\x04\n\n\x0c\n\x05\x04\x0f\x02\x02\x01\x12\x03z\x0b\x11\ - \n\x0c\n\x05\x04\x0f\x02\x02\x03\x12\x03z\x14\x15\n\x0b\n\x02\x04\x10\ - \x12\x05}\0\x80\x01\x01\n\n\n\x03\x04\x10\x01\x12\x03}\x08\x12\n\x0b\n\ - \x04\x04\x10\x02\0\x12\x03~\x04\x15\n\r\n\x05\x04\x10\x02\0\x04\x12\x04~\ - \x04}\x14\n\x0c\n\x05\x04\x10\x02\0\x05\x12\x03~\x04\n\n\x0c\n\x05\x04\ - \x10\x02\0\x01\x12\x03~\x0b\x10\n\x0c\n\x05\x04\x10\x02\0\x03\x12\x03~\ - \x13\x14\n\x0b\n\x04\x04\x10\x02\x01\x12\x03\x7f\x04\x14\n\r\n\x05\x04\ - \x10\x02\x01\x04\x12\x04\x7f\x04~\x15\n\x0c\n\x05\x04\x10\x02\x01\x06\ - \x12\x03\x7f\x04\x0b\n\x0c\n\x05\x04\x10\x02\x01\x01\x12\x03\x7f\x0c\x0f\ - \n\x0c\n\x05\x04\x10\x02\x01\x03\x12\x03\x7f\x12\x13\n\x0c\n\x02\x04\x11\ - \x12\x06\x82\x01\0\x85\x01\x01\n\x0b\n\x03\x04\x11\x01\x12\x04\x82\x01\ - \x08\x11\n\x0c\n\x04\x04\x11\x02\0\x12\x04\x83\x01\x04\x19\n\x0f\n\x05\ - \x04\x11\x02\0\x04\x12\x06\x83\x01\x04\x82\x01\x13\n\r\n\x05\x04\x11\x02\ - \0\x05\x12\x04\x83\x01\x04\n\n\r\n\x05\x04\x11\x02\0\x01\x12\x04\x83\x01\ - \x0b\x14\n\r\n\x05\x04\x11\x02\0\x03\x12\x04\x83\x01\x17\x18\n\x0c\n\x04\ - \x04\x11\x02\x01\x12\x04\x84\x01\x04\x13\n\x0f\n\x05\x04\x11\x02\x01\x04\ - \x12\x06\x84\x01\x04\x83\x01\x19\n\r\n\x05\x04\x11\x02\x01\x05\x12\x04\ - \x84\x01\x04\n\n\r\n\x05\x04\x11\x02\x01\x01\x12\x04\x84\x01\x0b\x0e\n\r\ - \n\x05\x04\x11\x02\x01\x03\x12\x04\x84\x01\x11\x12\n\x0c\n\x02\x04\x12\ - \x12\x06\x87\x01\0\x8a\x01\x01\n\x0b\n\x03\x04\x12\x01\x12\x04\x87\x01\ - \x08\x12\n\x0c\n\x04\x04\x12\x02\0\x12\x04\x88\x01\x04\x15\n\x0f\n\x05\ - \x04\x12\x02\0\x04\x12\x06\x88\x01\x04\x87\x01\x14\n\r\n\x05\x04\x12\x02\ - \0\x05\x12\x04\x88\x01\x04\n\n\r\n\x05\x04\x12\x02\0\x01\x12\x04\x88\x01\ - \x0b\x10\n\r\n\x05\x04\x12\x02\0\x03\x12\x04\x88\x01\x13\x14\n\x0c\n\x04\ - \x04\x12\x02\x01\x12\x04\x89\x01\x04\x14\n\x0f\n\x05\x04\x12\x02\x01\x04\ - \x12\x06\x89\x01\x04\x88\x01\x15\n\r\n\x05\x04\x12\x02\x01\x06\x12\x04\ - \x89\x01\x04\x0b\n\r\n\x05\x04\x12\x02\x01\x01\x12\x04\x89\x01\x0c\x0f\n\ - \r\n\x05\x04\x12\x02\x01\x03\x12\x04\x89\x01\x12\x13\n\x0c\n\x02\x04\x13\ - \x12\x06\x8c\x01\0\x8f\x01\x01\n\x0b\n\x03\x04\x13\x01\x12\x04\x8c\x01\ - \x08\x13\n\x0c\n\x04\x04\x13\x02\0\x12\x04\x8d\x01\x04\x19\n\x0f\n\x05\ - \x04\x13\x02\0\x04\x12\x06\x8d\x01\x04\x8c\x01\x15\n\r\n\x05\x04\x13\x02\ - \0\x05\x12\x04\x8d\x01\x04\n\n\r\n\x05\x04\x13\x02\0\x01\x12\x04\x8d\x01\ - \x0b\x14\n\r\n\x05\x04\x13\x02\0\x03\x12\x04\x8d\x01\x17\x18\n\x0c\n\x04\ - \x04\x13\x02\x01\x12\x04\x8e\x01\x04\x13\n\x0f\n\x05\x04\x13\x02\x01\x04\ - \x12\x06\x8e\x01\x04\x8d\x01\x19\n\r\n\x05\x04\x13\x02\x01\x05\x12\x04\ - \x8e\x01\x04\n\n\r\n\x05\x04\x13\x02\x01\x01\x12\x04\x8e\x01\x0b\x0e\n\r\ - \n\x05\x04\x13\x02\x01\x03\x12\x04\x8e\x01\x11\x12\n\x0c\n\x02\x04\x14\ - \x12\x06\x91\x01\0\x94\x01\x01\n\x0b\n\x03\x04\x14\x01\x12\x04\x91\x01\ - \x08\x14\n\x0c\n\x04\x04\x14\x02\0\x12\x04\x92\x01\x04\x15\n\x0f\n\x05\ - \x04\x14\x02\0\x04\x12\x06\x92\x01\x04\x91\x01\x16\n\r\n\x05\x04\x14\x02\ - \0\x05\x12\x04\x92\x01\x04\n\n\r\n\x05\x04\x14\x02\0\x01\x12\x04\x92\x01\ - \x0b\x10\n\r\n\x05\x04\x14\x02\0\x03\x12\x04\x92\x01\x13\x14\n\x0c\n\x04\ - \x04\x14\x02\x01\x12\x04\x93\x01\x04\x14\n\x0f\n\x05\x04\x14\x02\x01\x04\ - \x12\x06\x93\x01\x04\x92\x01\x15\n\r\n\x05\x04\x14\x02\x01\x06\x12\x04\ - \x93\x01\x04\x0b\n\r\n\x05\x04\x14\x02\x01\x01\x12\x04\x93\x01\x0c\x0f\n\ - \r\n\x05\x04\x14\x02\x01\x03\x12\x04\x93\x01\x12\x13\n\x0c\n\x02\x04\x15\ - \x12\x06\x96\x01\0\x99\x01\x01\n\x0b\n\x03\x04\x15\x01\x12\x04\x96\x01\ - \x08\x10\n\x0c\n\x04\x04\x15\x02\0\x12\x04\x97\x01\x04\x19\n\x0f\n\x05\ - \x04\x15\x02\0\x04\x12\x06\x97\x01\x04\x96\x01\x12\n\r\n\x05\x04\x15\x02\ - \0\x05\x12\x04\x97\x01\x04\n\n\r\n\x05\x04\x15\x02\0\x01\x12\x04\x97\x01\ - \x0b\x14\n\r\n\x05\x04\x15\x02\0\x03\x12\x04\x97\x01\x17\x18\n\x0c\n\x04\ - \x04\x15\x02\x01\x12\x04\x98\x01\x04\x13\n\x0f\n\x05\x04\x15\x02\x01\x04\ - \x12\x06\x98\x01\x04\x97\x01\x19\n\r\n\x05\x04\x15\x02\x01\x05\x12\x04\ - \x98\x01\x04\n\n\r\n\x05\x04\x15\x02\x01\x01\x12\x04\x98\x01\x0b\x0e\n\r\ - \n\x05\x04\x15\x02\x01\x03\x12\x04\x98\x01\x11\x12\n\x0c\n\x02\x04\x16\ - \x12\x06\x9b\x01\0\x9e\x01\x01\n\x0b\n\x03\x04\x16\x01\x12\x04\x9b\x01\ - \x08\x11\n\x0c\n\x04\x04\x16\x02\0\x12\x04\x9c\x01\x04\x15\n\x0f\n\x05\ - \x04\x16\x02\0\x04\x12\x06\x9c\x01\x04\x9b\x01\x13\n\r\n\x05\x04\x16\x02\ - \0\x05\x12\x04\x9c\x01\x04\n\n\r\n\x05\x04\x16\x02\0\x01\x12\x04\x9c\x01\ - \x0b\x10\n\r\n\x05\x04\x16\x02\0\x03\x12\x04\x9c\x01\x13\x14\n\x0c\n\x04\ - \x04\x16\x02\x01\x12\x04\x9d\x01\x04\x14\n\x0f\n\x05\x04\x16\x02\x01\x04\ - \x12\x06\x9d\x01\x04\x9c\x01\x15\n\r\n\x05\x04\x16\x02\x01\x06\x12\x04\ - \x9d\x01\x04\x0b\n\r\n\x05\x04\x16\x02\x01\x01\x12\x04\x9d\x01\x0c\x0f\n\ - \r\n\x05\x04\x16\x02\x01\x03\x12\x04\x9d\x01\x12\x13\n\x0c\n\x02\x04\x17\ - \x12\x06\xa0\x01\0\xab\x01\x01\n\x0b\n\x03\x04\x17\x01\x12\x04\xa0\x01\ - \x08\x11\n\x0c\n\x04\x04\x17\x02\0\x12\x04\xa1\x01\x04\x19\n\x0f\n\x05\ - \x04\x17\x02\0\x04\x12\x06\xa1\x01\x04\xa0\x01\x13\n\r\n\x05\x04\x17\x02\ - \0\x05\x12\x04\xa1\x01\x04\n\n\r\n\x05\x04\x17\x02\0\x01\x12\x04\xa1\x01\ - \x0b\x14\n\r\n\x05\x04\x17\x02\0\x03\x12\x04\xa1\x01\x17\x18\n\x0c\n\x04\ - \x04\x17\x02\x01\x12\x04\xa2\x01\x04\x13\n\x0f\n\x05\x04\x17\x02\x01\x04\ - \x12\x06\xa2\x01\x04\xa1\x01\x19\n\r\n\x05\x04\x17\x02\x01\x05\x12\x04\ - \xa2\x01\x04\n\n\r\n\x05\x04\x17\x02\x01\x01\x12\x04\xa2\x01\x0b\x0e\n\r\ - \n\x05\x04\x17\x02\x01\x03\x12\x04\xa2\x01\x11\x12\n\x0c\n\x04\x04\x17\ - \x02\x02\x12\x04\xa3\x01\x04\x15\n\x0f\n\x05\x04\x17\x02\x02\x04\x12\x06\ - \xa3\x01\x04\xa2\x01\x13\n\r\n\x05\x04\x17\x02\x02\x05\x12\x04\xa3\x01\ - \x04\n\n\r\n\x05\x04\x17\x02\x02\x01\x12\x04\xa3\x01\x0b\x10\n\r\n\x05\ - \x04\x17\x02\x02\x03\x12\x04\xa3\x01\x13\x14\n\x0c\n\x04\x04\x17\x02\x03\ - \x12\x04\xa4\x01\x04\x14\n\x0f\n\x05\x04\x17\x02\x03\x04\x12\x06\xa4\x01\ - \x04\xa3\x01\x15\n\r\n\x05\x04\x17\x02\x03\x05\x12\x04\xa4\x01\x04\n\n\r\ - \n\x05\x04\x17\x02\x03\x01\x12\x04\xa4\x01\x0b\x0f\n\r\n\x05\x04\x17\x02\ - \x03\x03\x12\x04\xa4\x01\x12\x13\n\x0c\n\x04\x04\x17\x02\x04\x12\x04\xa5\ - \x01\x04\x15\n\x0f\n\x05\x04\x17\x02\x04\x04\x12\x06\xa5\x01\x04\xa4\x01\ - \x14\n\r\n\x05\x04\x17\x02\x04\x05\x12\x04\xa5\x01\x04\n\n\r\n\x05\x04\ - \x17\x02\x04\x01\x12\x04\xa5\x01\x0b\x10\n\r\n\x05\x04\x17\x02\x04\x03\ - \x12\x04\xa5\x01\x13\x14\n\x0c\n\x04\x04\x17\x02\x05\x12\x04\xa6\x01\x04\ - \x1b\n\x0f\n\x05\x04\x17\x02\x05\x04\x12\x06\xa6\x01\x04\xa5\x01\x15\n\r\ - \n\x05\x04\x17\x02\x05\x05\x12\x04\xa6\x01\x04\x08\n\r\n\x05\x04\x17\x02\ - \x05\x01\x12\x04\xa6\x01\t\x16\n\r\n\x05\x04\x17\x02\x05\x03\x12\x04\xa6\ - \x01\x19\x1a\n\x0c\n\x04\x04\x17\x02\x06\x12\x04\xa7\x01\x04\x1a\n\x0f\n\ - \x05\x04\x17\x02\x06\x04\x12\x06\xa7\x01\x04\xa6\x01\x1b\n\r\n\x05\x04\ - \x17\x02\x06\x05\x12\x04\xa7\x01\x04\x08\n\r\n\x05\x04\x17\x02\x06\x01\ - \x12\x04\xa7\x01\t\x15\n\r\n\x05\x04\x17\x02\x06\x03\x12\x04\xa7\x01\x18\ - \x19\n\x0c\n\x04\x04\x17\x02\x07\x12\x04\xa8\x01\x04\x1b\n\x0f\n\x05\x04\ - \x17\x02\x07\x04\x12\x06\xa8\x01\x04\xa7\x01\x1a\n\r\n\x05\x04\x17\x02\ - \x07\x05\x12\x04\xa8\x01\x04\n\n\r\n\x05\x04\x17\x02\x07\x01\x12\x04\xa8\ - \x01\x0b\x16\n\r\n\x05\x04\x17\x02\x07\x03\x12\x04\xa8\x01\x19\x1a\n/\n\ - \x04\x04\x17\x02\x08\x12\x04\xa9\x01\x04'\"!\x20\x20\x20\x20repeated\x20\ - string\x20facets\x20=\x2010;\n\n\r\n\x05\x04\x17\x02\x08\x04\x12\x04\xa9\ - \x01\x04\x0c\n\r\n\x05\x04\x17\x02\x08\x05\x12\x04\xa9\x01\r\x13\n\r\n\ - \x05\x04\x17\x02\x08\x01\x12\x04\xa9\x01\x14\"\n\r\n\x05\x04\x17\x02\x08\ - \x03\x12\x04\xa9\x01%&\n\x0c\n\x02\x04\x18\x12\x06\xad\x01\0\xb0\x01\x01\ - \n\x0b\n\x03\x04\x18\x01\x12\x04\xad\x01\x08\x12\n\x0c\n\x04\x04\x18\x02\ - \0\x12\x04\xae\x01\x04\x15\n\x0f\n\x05\x04\x18\x02\0\x04\x12\x06\xae\x01\ - \x04\xad\x01\x14\n\r\n\x05\x04\x18\x02\0\x05\x12\x04\xae\x01\x04\n\n\r\n\ - \x05\x04\x18\x02\0\x01\x12\x04\xae\x01\x0b\x10\n\r\n\x05\x04\x18\x02\0\ - \x03\x12\x04\xae\x01\x13\x14\n\x0c\n\x04\x04\x18\x02\x01\x12\x04\xaf\x01\ - \x04\x14\n\x0f\n\x05\x04\x18\x02\x01\x04\x12\x06\xaf\x01\x04\xae\x01\x15\ - \n\r\n\x05\x04\x18\x02\x01\x06\x12\x04\xaf\x01\x04\x0b\n\r\n\x05\x04\x18\ - \x02\x01\x01\x12\x04\xaf\x01\x0c\x0f\n\r\n\x05\x04\x18\x02\x01\x03\x12\ - \x04\xaf\x01\x12\x13\n\x0c\n\x02\x04\x19\x12\x06\xb2\x01\0\xb5\x01\x01\n\ - \x0b\n\x03\x04\x19\x01\x12\x04\xb2\x01\x08\x11\n\x0c\n\x04\x04\x19\x02\0\ - \x12\x04\xb3\x01\x04\x19\n\x0f\n\x05\x04\x19\x02\0\x04\x12\x06\xb3\x01\ - \x04\xb2\x01\x13\n\r\n\x05\x04\x19\x02\0\x05\x12\x04\xb3\x01\x04\n\n\r\n\ - \x05\x04\x19\x02\0\x01\x12\x04\xb3\x01\x0b\x14\n\r\n\x05\x04\x19\x02\0\ - \x03\x12\x04\xb3\x01\x17\x18\n\x0c\n\x04\x04\x19\x02\x01\x12\x04\xb4\x01\ - \x04\x13\n\x0f\n\x05\x04\x19\x02\x01\x04\x12\x06\xb4\x01\x04\xb3\x01\x19\ - \n\r\n\x05\x04\x19\x02\x01\x05\x12\x04\xb4\x01\x04\n\n\r\n\x05\x04\x19\ - \x02\x01\x01\x12\x04\xb4\x01\x0b\x0e\n\r\n\x05\x04\x19\x02\x01\x03\x12\ - \x04\xb4\x01\x11\x12\n\x0c\n\x02\x04\x1a\x12\x06\xb7\x01\0\xba\x01\x01\n\ - \x0b\n\x03\x04\x1a\x01\x12\x04\xb7\x01\x08\x12\n\x0c\n\x04\x04\x1a\x02\0\ - \x12\x04\xb8\x01\x04\x15\n\x0f\n\x05\x04\x1a\x02\0\x04\x12\x06\xb8\x01\ - \x04\xb7\x01\x14\n\r\n\x05\x04\x1a\x02\0\x05\x12\x04\xb8\x01\x04\n\n\r\n\ - \x05\x04\x1a\x02\0\x01\x12\x04\xb8\x01\x0b\x10\n\r\n\x05\x04\x1a\x02\0\ - \x03\x12\x04\xb8\x01\x13\x14\n\x0c\n\x04\x04\x1a\x02\x01\x12\x04\xb9\x01\ - \x04\x14\n\x0f\n\x05\x04\x1a\x02\x01\x04\x12\x06\xb9\x01\x04\xb8\x01\x15\ - \n\r\n\x05\x04\x1a\x02\x01\x06\x12\x04\xb9\x01\x04\x0b\n\r\n\x05\x04\x1a\ - \x02\x01\x01\x12\x04\xb9\x01\x0c\x0f\n\r\n\x05\x04\x1a\x02\x01\x03\x12\ - \x04\xb9\x01\x12\x13b\x06proto3\ + \x12\x03\x0e\x04\x19\n\x0c\n\x05\x05\0\x02\x08\x01\x12\x03\x0e\x04\x14\n\ + \x0c\n\x05\x05\0\x02\x08\x02\x12\x03\x0e\x17\x18\n\x0b\n\x04\x05\0\x02\t\ + \x12\x03\x0f\x04\x1c\n\x0c\n\x05\x05\0\x02\t\x01\x12\x03\x0f\x04\x17\n\ + \x0c\n\x05\x05\0\x02\t\x02\x12\x03\x0f\x1a\x1b\n\x0b\n\x04\x05\0\x02\n\ + \x12\x03\x10\x04\x19\n\x0c\n\x05\x05\0\x02\n\x01\x12\x03\x10\x04\x13\n\ + \x0c\n\x05\x05\0\x02\n\x02\x12\x03\x10\x16\x18\n\x0b\n\x04\x05\0\x02\x0b\ + \x12\x03\x11\x04\x1b\n\x0c\n\x05\x05\0\x02\x0b\x01\x12\x03\x11\x04\x15\n\ + \x0c\n\x05\x05\0\x02\x0b\x02\x12\x03\x11\x18\x1a\n\x0b\n\x04\x05\0\x02\ + \x0c\x12\x03\x12\x04\x18\n\x0c\n\x05\x05\0\x02\x0c\x01\x12\x03\x12\x04\ + \x12\n\x0c\n\x05\x05\0\x02\x0c\x02\x12\x03\x12\x15\x17\n\x0b\n\x04\x05\0\ + \x02\r\x12\x03\x13\x04\x19\n\x0c\n\x05\x05\0\x02\r\x01\x12\x03\x13\x04\ + \x13\n\x0c\n\x05\x05\0\x02\r\x02\x12\x03\x13\x16\x18\n\x0b\n\x04\x05\0\ + \x02\x0e\x12\x03\x14\x04\x19\n\x0c\n\x05\x05\0\x02\x0e\x01\x12\x03\x14\ + \x04\x13\n\x0c\n\x05\x05\0\x02\x0e\x02\x12\x03\x14\x16\x18\n\n\n\x02\x05\ + \x01\x12\x04\x17\0!\x01\n\n\n\x03\x05\x01\x01\x12\x03\x17\x05\x0c\n\x0b\ + \n\x04\x05\x01\x02\0\x12\x03\x18\x04\r\n\x0c\n\x05\x05\x01\x02\0\x01\x12\ + \x03\x18\x04\x08\n\x0c\n\x05\x05\x01\x02\0\x02\x12\x03\x18\x0b\x0c\n\x0b\ + \n\x04\x05\x01\x02\x01\x12\x03\x19\x04\x0e\n\x0c\n\x05\x05\x01\x02\x01\ + \x01\x12\x03\x19\x04\t\n\x0c\n\x05\x05\x01\x02\x01\x02\x12\x03\x19\x0c\r\ + \n\x0b\n\x04\x05\x01\x02\x02\x12\x03\x1a\x04\x0c\n\x0c\n\x05\x05\x01\x02\ + \x02\x01\x12\x03\x1a\x04\x07\n\x0c\n\x05\x05\x01\x02\x02\x02\x12\x03\x1a\ + \n\x0b\n\x0b\n\x04\x05\x01\x02\x03\x12\x03\x1b\x04\x0f\n\x0c\n\x05\x05\ + \x01\x02\x03\x01\x12\x03\x1b\x04\n\n\x0c\n\x05\x05\x01\x02\x03\x02\x12\ + \x03\x1b\r\x0e\n\x0b\n\x04\x05\x01\x02\x04\x12\x03\x1c\x04\x10\n\x0c\n\ + \x05\x05\x01\x02\x04\x01\x12\x03\x1c\x04\x0b\n\x0c\n\x05\x05\x01\x02\x04\ + \x02\x12\x03\x1c\x0e\x0f\n\x0b\n\x04\x05\x01\x02\x05\x12\x03\x1d\x04\x13\ + \n\x0c\n\x05\x05\x01\x02\x05\x01\x12\x03\x1d\x04\x0e\n\x0c\n\x05\x05\x01\ + \x02\x05\x02\x12\x03\x1d\x11\x12\n\x0b\n\x04\x05\x01\x02\x06\x12\x03\x1e\ + \x04\x0f\n\x0c\n\x05\x05\x01\x02\x06\x01\x12\x03\x1e\x04\n\n\x0c\n\x05\ + \x05\x01\x02\x06\x02\x12\x03\x1e\r\x0e\n\x0b\n\x04\x05\x01\x02\x07\x12\ + \x03\x1f\x04\x11\n\x0c\n\x05\x05\x01\x02\x07\x01\x12\x03\x1f\x04\x0c\n\ + \x0c\n\x05\x05\x01\x02\x07\x02\x12\x03\x1f\x0f\x10\n\x0b\n\x04\x05\x01\ + \x02\x08\x12\x03\x20\x04\x0e\n\x0c\n\x05\x05\x01\x02\x08\x01\x12\x03\x20\ + \x04\t\n\x0c\n\x05\x05\x01\x02\x08\x02\x12\x03\x20\x0c\r\n\n\n\x02\x04\0\ + \x12\x04#\0/\x01\n\n\n\x03\x04\0\x01\x12\x03#\x08\x10\n\x0b\n\x04\x04\0\ + \x02\0\x12\x03$\x04\x19\n\r\n\x05\x04\0\x02\0\x04\x12\x04$\x04#\x12\n\ + \x0c\n\x05\x04\0\x02\0\x05\x12\x03$\x04\n\n\x0c\n\x05\x04\0\x02\0\x01\ + \x12\x03$\x0b\x14\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03$\x17\x18\n\x0b\n\ + \x04\x04\0\x02\x01\x12\x03%\x04\x19\n\r\n\x05\x04\0\x02\x01\x04\x12\x04%\ + \x04$\x19\n\x0c\n\x05\x04\0\x02\x01\x06\x12\x03%\x04\x0b\n\x0c\n\x05\x04\ + \0\x02\x01\x01\x12\x03%\x0c\x14\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03%\ + \x17\x18\n\x0b\n\x04\x04\0\x02\x02\x12\x03&\x04\x19\n\r\n\x05\x04\0\x02\ + \x02\x04\x12\x04&\x04%\x19\n\x0c\n\x05\x04\0\x02\x02\x06\x12\x03&\x04\ + \x0b\n\x0c\n\x05\x04\0\x02\x02\x01\x12\x03&\x0c\x14\n\x0c\n\x05\x04\0\ + \x02\x02\x03\x12\x03&\x17\x18\n\x0b\n\x04\x04\0\x02\x03\x12\x03'\x04\x1b\ + \n\r\n\x05\x04\0\x02\x03\x04\x12\x04'\x04&\x19\n\x0c\n\x05\x04\0\x02\x03\ + \x06\x12\x03'\x04\x0c\n\x0c\n\x05\x04\0\x02\x03\x01\x12\x03'\r\x16\n\x0c\ + \n\x05\x04\0\x02\x03\x03\x12\x03'\x19\x1a\n\x0b\n\x04\x04\0\x02\x04\x12\ + \x03(\x04\x17\n\r\n\x05\x04\0\x02\x04\x04\x12\x04(\x04'\x1b\n\x0c\n\x05\ + \x04\0\x02\x04\x06\x12\x03(\x04\n\n\x0c\n\x05\x04\0\x02\x04\x01\x12\x03(\ + \x0b\x12\n\x0c\n\x05\x04\0\x02\x04\x03\x12\x03(\x15\x16\n\x0b\n\x04\x04\ + \0\x02\x05\x12\x03)\x04\x1d\n\r\n\x05\x04\0\x02\x05\x04\x12\x04)\x04(\ + \x17\n\x0c\n\x05\x04\0\x02\x05\x06\x12\x03)\x04\r\n\x0c\n\x05\x04\0\x02\ + \x05\x01\x12\x03)\x0e\x18\n\x0c\n\x05\x04\0\x02\x05\x03\x12\x03)\x1b\x1c\ + \n\x0b\n\x04\x04\0\x02\x06\x12\x03*\x04\x20\n\r\n\x05\x04\0\x02\x06\x04\ + \x12\x04*\x04)\x1d\n\x0c\n\x05\x04\0\x02\x06\x06\x12\x03*\x04\x0e\n\x0c\ + \n\x05\x04\0\x02\x06\x01\x12\x03*\x0f\x1b\n\x0c\n\x05\x04\0\x02\x06\x03\ + \x12\x03*\x1e\x1f\n\x0b\n\x04\x04\0\x02\x07\x12\x03+\x04&\n\r\n\x05\x04\ + \0\x02\x07\x04\x12\x04+\x04*\x20\n\x0c\n\x05\x04\0\x02\x07\x06\x12\x03+\ + \x04\x11\n\x0c\n\x05\x04\0\x02\x07\x01\x12\x03+\x12!\n\x0c\n\x05\x04\0\ + \x02\x07\x03\x12\x03+$%\n\x0b\n\x04\x04\0\x02\x08\x12\x03,\x04\x1d\n\r\n\ + \x05\x04\0\x02\x08\x04\x12\x04,\x04+&\n\x0c\n\x05\x04\0\x02\x08\x06\x12\ + \x03,\x04\r\n\x0c\n\x05\x04\0\x02\x08\x01\x12\x03,\x0e\x18\n\x0c\n\x05\ + \x04\0\x02\x08\x03\x12\x03,\x1b\x1c\n\x0b\n\x04\x04\0\x02\t\x12\x03-\x04\ + \"\n\r\n\x05\x04\0\x02\t\x04\x12\x04-\x04,\x1d\n\x0c\n\x05\x04\0\x02\t\ + \x06\x12\x03-\x04\x0f\n\x0c\n\x05\x04\0\x02\t\x01\x12\x03-\x10\x1c\n\x0c\ + \n\x05\x04\0\x02\t\x03\x12\x03-\x1f!\n\x0b\n\x04\x04\0\x02\n\x12\x03.\ + \x04\x1c\n\r\n\x05\x04\0\x02\n\x04\x12\x04.\x04-\"\n\x0c\n\x05\x04\0\x02\ + \n\x06\x12\x03.\x04\x0c\n\x0c\n\x05\x04\0\x02\n\x01\x12\x03.\r\x16\n\x0c\ + \n\x05\x04\0\x02\n\x03\x12\x03.\x19\x1b\n\n\n\x02\x04\x01\x12\x041\05\ + \x01\n\n\n\x03\x04\x01\x01\x12\x031\x08\x15\n\x0b\n\x04\x04\x01\x02\0\ + \x12\x032\x04\x1e\n\r\n\x05\x04\x01\x02\0\x04\x12\x042\x041\x17\n\x0c\n\ + \x05\x04\x01\x02\0\x06\x12\x032\x04\x16\n\x0c\n\x05\x04\x01\x02\0\x01\ + \x12\x032\x17\x19\n\x0c\n\x05\x04\x01\x02\0\x03\x12\x032\x1c\x1d\n\x0b\n\ + \x04\x04\x01\x02\x01\x12\x033\x04\x12\n\r\n\x05\x04\x01\x02\x01\x04\x12\ + \x043\x042\x1e\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x033\x04\n\n\x0c\n\ + \x05\x04\x01\x02\x01\x01\x12\x033\x0b\r\n\x0c\n\x05\x04\x01\x02\x01\x03\ + \x12\x033\x10\x11\n\x0b\n\x04\x04\x01\x02\x02\x12\x034\x04\x14\n\r\n\x05\ + \x04\x01\x02\x02\x04\x12\x044\x043\x12\n\x0c\n\x05\x04\x01\x02\x02\x05\ + \x12\x034\x04\n\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x034\x0b\x0f\n\x0c\n\ + \x05\x04\x01\x02\x02\x03\x12\x034\x12\x13\n\n\n\x02\x04\x02\x12\x047\09\ + \x01\n\n\n\x03\x04\x02\x01\x12\x037\x08\x10\n\x0b\n\x04\x04\x02\x02\0\ + \x12\x038\x04\x14\n\r\n\x05\x04\x02\x02\0\x04\x12\x048\x047\x12\n\x0c\n\ + \x05\x04\x02\x02\0\x06\x12\x038\x04\x0b\n\x0c\n\x05\x04\x02\x02\0\x01\ + \x12\x038\x0c\x0f\n\x0c\n\x05\x04\x02\x02\0\x03\x12\x038\x12\x13\n\n\n\ + \x02\x04\x03\x12\x04;\0?\x01\n\n\n\x03\x04\x03\x01\x12\x03;\x08\x0f\n\ + \x0b\n\x04\x04\x03\x02\0\x12\x03<\x04\x19\n\r\n\x05\x04\x03\x02\0\x04\ + \x12\x04<\x04;\x11\n\x0c\n\x05\x04\x03\x02\0\x05\x12\x03<\x04\n\n\x0c\n\ + \x05\x04\x03\x02\0\x01\x12\x03<\x0b\x14\n\x0c\n\x05\x04\x03\x02\0\x03\ + \x12\x03<\x17\x18\n\x0b\n\x04\x04\x03\x02\x01\x12\x03=\x04\x17\n\r\n\x05\ + \x04\x03\x02\x01\x04\x12\x04=\x04<\x19\n\x0c\n\x05\x04\x03\x02\x01\x05\ + \x12\x03=\x04\n\n\x0c\n\x05\x04\x03\x02\x01\x01\x12\x03=\x0b\x12\n\x0c\n\ + \x05\x04\x03\x02\x01\x03\x12\x03=\x15\x16\n\x0b\n\x04\x04\x03\x02\x02\ + \x12\x03>\x04\x19\n\r\n\x05\x04\x03\x02\x02\x04\x12\x04>\x04=\x17\n\x0c\ + \n\x05\x04\x03\x02\x02\x05\x12\x03>\x04\n\n\x0c\n\x05\x04\x03\x02\x02\ + \x01\x12\x03>\x0b\x14\n\x0c\n\x05\x04\x03\x02\x02\x03\x12\x03>\x17\x18\n\ + \n\n\x02\x04\x04\x12\x04A\0E\x01\n\n\n\x03\x04\x04\x01\x12\x03A\x08\x10\ + \n\x0b\n\x04\x04\x04\x02\0\x12\x03B\x04\x19\n\r\n\x05\x04\x04\x02\0\x04\ + \x12\x04B\x04A\x12\n\x0c\n\x05\x04\x04\x02\0\x05\x12\x03B\x04\n\n\x0c\n\ + \x05\x04\x04\x02\0\x01\x12\x03B\x0b\x14\n\x0c\n\x05\x04\x04\x02\0\x03\ + \x12\x03B\x17\x18\n\x0b\n\x04\x04\x04\x02\x01\x12\x03C\x04\x17\n\r\n\x05\ + \x04\x04\x02\x01\x04\x12\x04C\x04B\x19\n\x0c\n\x05\x04\x04\x02\x01\x05\ + \x12\x03C\x04\n\n\x0c\n\x05\x04\x04\x02\x01\x01\x12\x03C\x0b\x12\n\x0c\n\ + \x05\x04\x04\x02\x01\x03\x12\x03C\x15\x16\n\x0b\n\x04\x04\x04\x02\x02\ + \x12\x03D\x04\x19\n\r\n\x05\x04\x04\x02\x02\x04\x12\x04D\x04C\x17\n\x0c\ + \n\x05\x04\x04\x02\x02\x05\x12\x03D\x04\n\n\x0c\n\x05\x04\x04\x02\x02\ + \x01\x12\x03D\x0b\x14\n\x0c\n\x05\x04\x04\x02\x02\x03\x12\x03D\x17\x18\n\ + \n\n\x02\x04\x05\x12\x04G\0J\x01\n\n\n\x03\x04\x05\x01\x12\x03G\x08\x10\ + \n\x0b\n\x04\x04\x05\x02\0\x12\x03H\x04\x19\n\r\n\x05\x04\x05\x02\0\x04\ + \x12\x04H\x04G\x12\n\x0c\n\x05\x04\x05\x02\0\x05\x12\x03H\x04\n\n\x0c\n\ + \x05\x04\x05\x02\0\x01\x12\x03H\x0b\x14\n\x0c\n\x05\x04\x05\x02\0\x03\ + \x12\x03H\x17\x18\n\x0b\n\x04\x04\x05\x02\x01\x12\x03I\x04\x13\n\r\n\x05\ + \x04\x05\x02\x01\x04\x12\x04I\x04H\x19\n\x0c\n\x05\x04\x05\x02\x01\x05\ + \x12\x03I\x04\n\n\x0c\n\x05\x04\x05\x02\x01\x01\x12\x03I\x0b\x0e\n\x0c\n\ + \x05\x04\x05\x02\x01\x03\x12\x03I\x11\x12\n\n\n\x02\x04\x06\x12\x04L\0O\ + \x01\n\n\n\x03\x04\x06\x01\x12\x03L\x08\x11\n\x0b\n\x04\x04\x06\x02\0\ + \x12\x03M\x04\x15\n\r\n\x05\x04\x06\x02\0\x04\x12\x04M\x04L\x13\n\x0c\n\ + \x05\x04\x06\x02\0\x05\x12\x03M\x04\n\n\x0c\n\x05\x04\x06\x02\0\x01\x12\ + \x03M\x0b\x10\n\x0c\n\x05\x04\x06\x02\0\x03\x12\x03M\x13\x14\n\x0b\n\x04\ + \x04\x06\x02\x01\x12\x03N\x04\x14\n\r\n\x05\x04\x06\x02\x01\x04\x12\x04N\ + \x04M\x15\n\x0c\n\x05\x04\x06\x02\x01\x06\x12\x03N\x04\x0b\n\x0c\n\x05\ + \x04\x06\x02\x01\x01\x12\x03N\x0c\x0f\n\x0c\n\x05\x04\x06\x02\x01\x03\ + \x12\x03N\x12\x13\n\n\n\x02\x04\x07\x12\x04Q\0T\x01\n\n\n\x03\x04\x07\ + \x01\x12\x03Q\x08\x10\n\x0b\n\x04\x04\x07\x02\0\x12\x03R\x04\x19\n\r\n\ + \x05\x04\x07\x02\0\x04\x12\x04R\x04Q\x12\n\x0c\n\x05\x04\x07\x02\0\x05\ + \x12\x03R\x04\n\n\x0c\n\x05\x04\x07\x02\0\x01\x12\x03R\x0b\x14\n\x0c\n\ + \x05\x04\x07\x02\0\x03\x12\x03R\x17\x18\n\x0b\n\x04\x04\x07\x02\x01\x12\ + \x03S\x04\x13\n\r\n\x05\x04\x07\x02\x01\x04\x12\x04S\x04R\x19\n\x0c\n\ + \x05\x04\x07\x02\x01\x05\x12\x03S\x04\n\n\x0c\n\x05\x04\x07\x02\x01\x01\ + \x12\x03S\x0b\x0e\n\x0c\n\x05\x04\x07\x02\x01\x03\x12\x03S\x11\x12\n\n\n\ + \x02\x04\x08\x12\x04V\0Y\x01\n\n\n\x03\x04\x08\x01\x12\x03V\x08\x11\n\ + \x0b\n\x04\x04\x08\x02\0\x12\x03W\x04\x15\n\r\n\x05\x04\x08\x02\0\x04\ + \x12\x04W\x04V\x13\n\x0c\n\x05\x04\x08\x02\0\x05\x12\x03W\x04\n\n\x0c\n\ + \x05\x04\x08\x02\0\x01\x12\x03W\x0b\x10\n\x0c\n\x05\x04\x08\x02\0\x03\ + \x12\x03W\x13\x14\n\x0b\n\x04\x04\x08\x02\x01\x12\x03X\x04\x14\n\r\n\x05\ + \x04\x08\x02\x01\x04\x12\x04X\x04W\x15\n\x0c\n\x05\x04\x08\x02\x01\x06\ + \x12\x03X\x04\x0b\n\x0c\n\x05\x04\x08\x02\x01\x01\x12\x03X\x0c\x0f\n\x0c\ + \n\x05\x04\x08\x02\x01\x03\x12\x03X\x12\x13\n\n\n\x02\x04\t\x12\x04[\0^\ + \x01\n\n\n\x03\x04\t\x01\x12\x03[\x08\x12\n\x0b\n\x04\x04\t\x02\0\x12\ + \x03\\\x04\x19\n\r\n\x05\x04\t\x02\0\x04\x12\x04\\\x04[\x14\n\x0c\n\x05\ + \x04\t\x02\0\x05\x12\x03\\\x04\n\n\x0c\n\x05\x04\t\x02\0\x01\x12\x03\\\ + \x0b\x14\n\x0c\n\x05\x04\t\x02\0\x03\x12\x03\\\x17\x18\n\x0b\n\x04\x04\t\ + \x02\x01\x12\x03]\x04\x13\n\r\n\x05\x04\t\x02\x01\x04\x12\x04]\x04\\\x19\ + \n\x0c\n\x05\x04\t\x02\x01\x05\x12\x03]\x04\n\n\x0c\n\x05\x04\t\x02\x01\ + \x01\x12\x03]\x0b\x0e\n\x0c\n\x05\x04\t\x02\x01\x03\x12\x03]\x11\x12\n\n\ + \n\x02\x04\n\x12\x04`\0c\x01\n\n\n\x03\x04\n\x01\x12\x03`\x08\x13\n\x0b\ + \n\x04\x04\n\x02\0\x12\x03a\x04\x15\n\r\n\x05\x04\n\x02\0\x04\x12\x04a\ + \x04`\x15\n\x0c\n\x05\x04\n\x02\0\x05\x12\x03a\x04\n\n\x0c\n\x05\x04\n\ + \x02\0\x01\x12\x03a\x0b\x10\n\x0c\n\x05\x04\n\x02\0\x03\x12\x03a\x13\x14\ + \n\x0b\n\x04\x04\n\x02\x01\x12\x03b\x04\x14\n\r\n\x05\x04\n\x02\x01\x04\ + \x12\x04b\x04a\x15\n\x0c\n\x05\x04\n\x02\x01\x06\x12\x03b\x04\x0b\n\x0c\ + \n\x05\x04\n\x02\x01\x01\x12\x03b\x0c\x0f\n\x0c\n\x05\x04\n\x02\x01\x03\ + \x12\x03b\x12\x13\n\n\n\x02\x04\x0b\x12\x04e\0i\x01\n\n\n\x03\x04\x0b\ + \x01\x12\x03e\x08\x0e\n\x0b\n\x04\x04\x0b\x02\0\x12\x03f\x04\x19\n\r\n\ + \x05\x04\x0b\x02\0\x04\x12\x04f\x04e\x10\n\x0c\n\x05\x04\x0b\x02\0\x05\ + \x12\x03f\x04\n\n\x0c\n\x05\x04\x0b\x02\0\x01\x12\x03f\x0b\x14\n\x0c\n\ + \x05\x04\x0b\x02\0\x03\x12\x03f\x17\x18\n\x0b\n\x04\x04\x0b\x02\x01\x12\ + \x03g\x04\x13\n\r\n\x05\x04\x0b\x02\x01\x04\x12\x04g\x04f\x19\n\x0c\n\ + \x05\x04\x0b\x02\x01\x05\x12\x03g\x04\n\n\x0c\n\x05\x04\x0b\x02\x01\x01\ + \x12\x03g\x0b\x0e\n\x0c\n\x05\x04\x0b\x02\x01\x03\x12\x03g\x11\x12\n\x0b\ + \n\x04\x04\x0b\x02\x02\x12\x03h\x04\x16\n\r\n\x05\x04\x0b\x02\x02\x04\ + \x12\x04h\x04g\x13\n\x0c\n\x05\x04\x0b\x02\x02\x05\x12\x03h\x04\n\n\x0c\ + \n\x05\x04\x0b\x02\x02\x01\x12\x03h\x0b\x11\n\x0c\n\x05\x04\x0b\x02\x02\ + \x03\x12\x03h\x14\x15\n\n\n\x02\x04\x0c\x12\x04k\0n\x01\n\n\n\x03\x04\ + \x0c\x01\x12\x03k\x08\x0f\n\x0b\n\x04\x04\x0c\x02\0\x12\x03l\x04\x15\n\r\ + \n\x05\x04\x0c\x02\0\x04\x12\x04l\x04k\x11\n\x0c\n\x05\x04\x0c\x02\0\x05\ + \x12\x03l\x04\n\n\x0c\n\x05\x04\x0c\x02\0\x01\x12\x03l\x0b\x10\n\x0c\n\ + \x05\x04\x0c\x02\0\x03\x12\x03l\x13\x14\n\x0b\n\x04\x04\x0c\x02\x01\x12\ + \x03m\x04\x14\n\r\n\x05\x04\x0c\x02\x01\x04\x12\x04m\x04l\x15\n\x0c\n\ + \x05\x04\x0c\x02\x01\x06\x12\x03m\x04\x0b\n\x0c\n\x05\x04\x0c\x02\x01\ + \x01\x12\x03m\x0c\x0f\n\x0c\n\x05\x04\x0c\x02\x01\x03\x12\x03m\x12\x13\n\ + \n\n\x02\x04\r\x12\x04p\0t\x01\n\n\n\x03\x04\r\x01\x12\x03p\x08\x0e\n\ + \x0b\n\x04\x04\r\x02\0\x12\x03q\x04\x19\n\r\n\x05\x04\r\x02\0\x04\x12\ + \x04q\x04p\x10\n\x0c\n\x05\x04\r\x02\0\x05\x12\x03q\x04\n\n\x0c\n\x05\ + \x04\r\x02\0\x01\x12\x03q\x0b\x14\n\x0c\n\x05\x04\r\x02\0\x03\x12\x03q\ + \x17\x18\n\x0b\n\x04\x04\r\x02\x01\x12\x03r\x04\x13\n\r\n\x05\x04\r\x02\ + \x01\x04\x12\x04r\x04q\x19\n\x0c\n\x05\x04\r\x02\x01\x05\x12\x03r\x04\n\ + \n\x0c\n\x05\x04\r\x02\x01\x01\x12\x03r\x0b\x0e\n\x0c\n\x05\x04\r\x02\ + \x01\x03\x12\x03r\x11\x12\n\x0b\n\x04\x04\r\x02\x02\x12\x03s\x04\x13\n\r\ + \n\x05\x04\r\x02\x02\x04\x12\x04s\x04r\x13\n\x0c\n\x05\x04\r\x02\x02\x05\ + \x12\x03s\x04\n\n\x0c\n\x05\x04\r\x02\x02\x01\x12\x03s\x0b\x0e\n\x0c\n\ + \x05\x04\r\x02\x02\x03\x12\x03s\x11\x12\n\n\n\x02\x04\x0e\x12\x04v\0y\ + \x01\n\n\n\x03\x04\x0e\x01\x12\x03v\x08\x0f\n\x0b\n\x04\x04\x0e\x02\0\ + \x12\x03w\x04\x15\n\r\n\x05\x04\x0e\x02\0\x04\x12\x04w\x04v\x11\n\x0c\n\ + \x05\x04\x0e\x02\0\x05\x12\x03w\x04\n\n\x0c\n\x05\x04\x0e\x02\0\x01\x12\ + \x03w\x0b\x10\n\x0c\n\x05\x04\x0e\x02\0\x03\x12\x03w\x13\x14\n\x0b\n\x04\ + \x04\x0e\x02\x01\x12\x03x\x04\x14\n\r\n\x05\x04\x0e\x02\x01\x04\x12\x04x\ + \x04w\x15\n\x0c\n\x05\x04\x0e\x02\x01\x06\x12\x03x\x04\x0b\n\x0c\n\x05\ + \x04\x0e\x02\x01\x01\x12\x03x\x0c\x0f\n\x0c\n\x05\x04\x0e\x02\x01\x03\ + \x12\x03x\x12\x13\n\n\n\x02\x04\x0f\x12\x04{\0\x7f\x01\n\n\n\x03\x04\x0f\ + \x01\x12\x03{\x08\x11\n\x0b\n\x04\x04\x0f\x02\0\x12\x03|\x04\x19\n\r\n\ + \x05\x04\x0f\x02\0\x04\x12\x04|\x04{\x13\n\x0c\n\x05\x04\x0f\x02\0\x05\ + \x12\x03|\x04\n\n\x0c\n\x05\x04\x0f\x02\0\x01\x12\x03|\x0b\x14\n\x0c\n\ + \x05\x04\x0f\x02\0\x03\x12\x03|\x17\x18\n\x0b\n\x04\x04\x0f\x02\x01\x12\ + \x03}\x04\x13\n\r\n\x05\x04\x0f\x02\x01\x04\x12\x04}\x04|\x19\n\x0c\n\ + \x05\x04\x0f\x02\x01\x05\x12\x03}\x04\n\n\x0c\n\x05\x04\x0f\x02\x01\x01\ + \x12\x03}\x0b\x0e\n\x0c\n\x05\x04\x0f\x02\x01\x03\x12\x03}\x11\x12\n\x0b\ + \n\x04\x04\x0f\x02\x02\x12\x03~\x04\x16\n\r\n\x05\x04\x0f\x02\x02\x04\ + \x12\x04~\x04}\x13\n\x0c\n\x05\x04\x0f\x02\x02\x05\x12\x03~\x04\n\n\x0c\ + \n\x05\x04\x0f\x02\x02\x01\x12\x03~\x0b\x11\n\x0c\n\x05\x04\x0f\x02\x02\ + \x03\x12\x03~\x14\x15\n\x0c\n\x02\x04\x10\x12\x06\x81\x01\0\x84\x01\x01\ + \n\x0b\n\x03\x04\x10\x01\x12\x04\x81\x01\x08\x12\n\x0c\n\x04\x04\x10\x02\ + \0\x12\x04\x82\x01\x04\x15\n\x0f\n\x05\x04\x10\x02\0\x04\x12\x06\x82\x01\ + \x04\x81\x01\x14\n\r\n\x05\x04\x10\x02\0\x05\x12\x04\x82\x01\x04\n\n\r\n\ + \x05\x04\x10\x02\0\x01\x12\x04\x82\x01\x0b\x10\n\r\n\x05\x04\x10\x02\0\ + \x03\x12\x04\x82\x01\x13\x14\n\x0c\n\x04\x04\x10\x02\x01\x12\x04\x83\x01\ + \x04\x14\n\x0f\n\x05\x04\x10\x02\x01\x04\x12\x06\x83\x01\x04\x82\x01\x15\ + \n\r\n\x05\x04\x10\x02\x01\x06\x12\x04\x83\x01\x04\x0b\n\r\n\x05\x04\x10\ + \x02\x01\x01\x12\x04\x83\x01\x0c\x0f\n\r\n\x05\x04\x10\x02\x01\x03\x12\ + \x04\x83\x01\x12\x13\n\x0c\n\x02\x04\x11\x12\x06\x86\x01\0\x8a\x01\x01\n\ + \x0b\n\x03\x04\x11\x01\x12\x04\x86\x01\x08\x12\n\x0c\n\x04\x04\x11\x02\0\ + \x12\x04\x87\x01\x04\x19\n\x0f\n\x05\x04\x11\x02\0\x04\x12\x06\x87\x01\ + \x04\x86\x01\x14\n\r\n\x05\x04\x11\x02\0\x05\x12\x04\x87\x01\x04\n\n\r\n\ + \x05\x04\x11\x02\0\x01\x12\x04\x87\x01\x0b\x14\n\r\n\x05\x04\x11\x02\0\ + \x03\x12\x04\x87\x01\x17\x18\n\x0c\n\x04\x04\x11\x02\x01\x12\x04\x88\x01\ + \x04\x13\n\x0f\n\x05\x04\x11\x02\x01\x04\x12\x06\x88\x01\x04\x87\x01\x19\ + \n\r\n\x05\x04\x11\x02\x01\x05\x12\x04\x88\x01\x04\n\n\r\n\x05\x04\x11\ + \x02\x01\x01\x12\x04\x88\x01\x0b\x0e\n\r\n\x05\x04\x11\x02\x01\x03\x12\ + \x04\x88\x01\x11\x12\n\x0c\n\x04\x04\x11\x02\x02\x12\x04\x89\x01\x04\x14\ + \n\x0f\n\x05\x04\x11\x02\x02\x04\x12\x06\x89\x01\x04\x88\x01\x13\n\r\n\ + \x05\x04\x11\x02\x02\x05\x12\x04\x89\x01\x04\n\n\r\n\x05\x04\x11\x02\x02\ + \x01\x12\x04\x89\x01\x0b\x0f\n\r\n\x05\x04\x11\x02\x02\x03\x12\x04\x89\ + \x01\x12\x13\n\x0c\n\x02\x04\x12\x12\x06\x8c\x01\0\x8f\x01\x01\n\x0b\n\ + \x03\x04\x12\x01\x12\x04\x8c\x01\x08\x13\n\x0c\n\x04\x04\x12\x02\0\x12\ + \x04\x8d\x01\x04\x15\n\x0f\n\x05\x04\x12\x02\0\x04\x12\x06\x8d\x01\x04\ + \x8c\x01\x15\n\r\n\x05\x04\x12\x02\0\x05\x12\x04\x8d\x01\x04\n\n\r\n\x05\ + \x04\x12\x02\0\x01\x12\x04\x8d\x01\x0b\x10\n\r\n\x05\x04\x12\x02\0\x03\ + \x12\x04\x8d\x01\x13\x14\n\x0c\n\x04\x04\x12\x02\x01\x12\x04\x8e\x01\x04\ + \x14\n\x0f\n\x05\x04\x12\x02\x01\x04\x12\x06\x8e\x01\x04\x8d\x01\x15\n\r\ + \n\x05\x04\x12\x02\x01\x06\x12\x04\x8e\x01\x04\x0b\n\r\n\x05\x04\x12\x02\ + \x01\x01\x12\x04\x8e\x01\x0c\x0f\n\r\n\x05\x04\x12\x02\x01\x03\x12\x04\ + \x8e\x01\x12\x13\n\x0c\n\x02\x04\x13\x12\x06\x91\x01\0\x95\x01\x01\n\x0b\ + \n\x03\x04\x13\x01\x12\x04\x91\x01\x08\x15\n\x0c\n\x04\x04\x13\x02\0\x12\ + \x04\x92\x01\x04\x19\n\x0f\n\x05\x04\x13\x02\0\x04\x12\x06\x92\x01\x04\ + \x91\x01\x17\n\r\n\x05\x04\x13\x02\0\x05\x12\x04\x92\x01\x04\n\n\r\n\x05\ + \x04\x13\x02\0\x01\x12\x04\x92\x01\x0b\x14\n\r\n\x05\x04\x13\x02\0\x03\ + \x12\x04\x92\x01\x17\x18\n\x0c\n\x04\x04\x13\x02\x01\x12\x04\x93\x01\x04\ + \x13\n\x0f\n\x05\x04\x13\x02\x01\x04\x12\x06\x93\x01\x04\x92\x01\x19\n\r\ + \n\x05\x04\x13\x02\x01\x05\x12\x04\x93\x01\x04\n\n\r\n\x05\x04\x13\x02\ + \x01\x01\x12\x04\x93\x01\x0b\x0e\n\r\n\x05\x04\x13\x02\x01\x03\x12\x04\ + \x93\x01\x11\x12\n\x0c\n\x04\x04\x13\x02\x02\x12\x04\x94\x01\x04\x14\n\ + \x0f\n\x05\x04\x13\x02\x02\x04\x12\x06\x94\x01\x04\x93\x01\x13\n\r\n\x05\ + \x04\x13\x02\x02\x05\x12\x04\x94\x01\x04\n\n\r\n\x05\x04\x13\x02\x02\x01\ + \x12\x04\x94\x01\x0b\x0f\n\r\n\x05\x04\x13\x02\x02\x03\x12\x04\x94\x01\ + \x12\x13\n\x0c\n\x02\x04\x14\x12\x06\x97\x01\0\x9a\x01\x01\n\x0b\n\x03\ + \x04\x14\x01\x12\x04\x97\x01\x08\x16\n\x0c\n\x04\x04\x14\x02\0\x12\x04\ + \x98\x01\x04\x15\n\x0f\n\x05\x04\x14\x02\0\x04\x12\x06\x98\x01\x04\x97\ + \x01\x18\n\r\n\x05\x04\x14\x02\0\x05\x12\x04\x98\x01\x04\n\n\r\n\x05\x04\ + \x14\x02\0\x01\x12\x04\x98\x01\x0b\x10\n\r\n\x05\x04\x14\x02\0\x03\x12\ + \x04\x98\x01\x13\x14\n\x0c\n\x04\x04\x14\x02\x01\x12\x04\x99\x01\x04\x14\ + \n\x0f\n\x05\x04\x14\x02\x01\x04\x12\x06\x99\x01\x04\x98\x01\x15\n\r\n\ + \x05\x04\x14\x02\x01\x06\x12\x04\x99\x01\x04\x0b\n\r\n\x05\x04\x14\x02\ + \x01\x01\x12\x04\x99\x01\x0c\x0f\n\r\n\x05\x04\x14\x02\x01\x03\x12\x04\ + \x99\x01\x12\x13\n\x0c\n\x02\x04\x15\x12\x06\x9c\x01\0\x9f\x01\x01\n\x0b\ + \n\x03\x04\x15\x01\x12\x04\x9c\x01\x08\x11\n\x0c\n\x04\x04\x15\x02\0\x12\ + \x04\x9d\x01\x04\x19\n\x0f\n\x05\x04\x15\x02\0\x04\x12\x06\x9d\x01\x04\ + \x9c\x01\x13\n\r\n\x05\x04\x15\x02\0\x05\x12\x04\x9d\x01\x04\n\n\r\n\x05\ + \x04\x15\x02\0\x01\x12\x04\x9d\x01\x0b\x14\n\r\n\x05\x04\x15\x02\0\x03\ + \x12\x04\x9d\x01\x17\x18\n\x0c\n\x04\x04\x15\x02\x01\x12\x04\x9e\x01\x04\ + \x13\n\x0f\n\x05\x04\x15\x02\x01\x04\x12\x06\x9e\x01\x04\x9d\x01\x19\n\r\ + \n\x05\x04\x15\x02\x01\x05\x12\x04\x9e\x01\x04\n\n\r\n\x05\x04\x15\x02\ + \x01\x01\x12\x04\x9e\x01\x0b\x0e\n\r\n\x05\x04\x15\x02\x01\x03\x12\x04\ + \x9e\x01\x11\x12\n\x0c\n\x02\x04\x16\x12\x06\xa1\x01\0\xa4\x01\x01\n\x0b\ + \n\x03\x04\x16\x01\x12\x04\xa1\x01\x08\x12\n\x0c\n\x04\x04\x16\x02\0\x12\ + \x04\xa2\x01\x04\x15\n\x0f\n\x05\x04\x16\x02\0\x04\x12\x06\xa2\x01\x04\ + \xa1\x01\x14\n\r\n\x05\x04\x16\x02\0\x05\x12\x04\xa2\x01\x04\n\n\r\n\x05\ + \x04\x16\x02\0\x01\x12\x04\xa2\x01\x0b\x10\n\r\n\x05\x04\x16\x02\0\x03\ + \x12\x04\xa2\x01\x13\x14\n\x0c\n\x04\x04\x16\x02\x01\x12\x04\xa3\x01\x04\ + \x14\n\x0f\n\x05\x04\x16\x02\x01\x04\x12\x06\xa3\x01\x04\xa2\x01\x15\n\r\ + \n\x05\x04\x16\x02\x01\x06\x12\x04\xa3\x01\x04\x0b\n\r\n\x05\x04\x16\x02\ + \x01\x01\x12\x04\xa3\x01\x0c\x0f\n\r\n\x05\x04\x16\x02\x01\x03\x12\x04\ + \xa3\x01\x12\x13\n\x0c\n\x02\x04\x17\x12\x06\xa6\x01\0\xa9\x01\x01\n\x0b\ + \n\x03\x04\x17\x01\x12\x04\xa6\x01\x08\x13\n\x0c\n\x04\x04\x17\x02\0\x12\ + \x04\xa7\x01\x04\x19\n\x0f\n\x05\x04\x17\x02\0\x04\x12\x06\xa7\x01\x04\ + \xa6\x01\x15\n\r\n\x05\x04\x17\x02\0\x05\x12\x04\xa7\x01\x04\n\n\r\n\x05\ + \x04\x17\x02\0\x01\x12\x04\xa7\x01\x0b\x14\n\r\n\x05\x04\x17\x02\0\x03\ + \x12\x04\xa7\x01\x17\x18\n\x0c\n\x04\x04\x17\x02\x01\x12\x04\xa8\x01\x04\ + \x13\n\x0f\n\x05\x04\x17\x02\x01\x04\x12\x06\xa8\x01\x04\xa7\x01\x19\n\r\ + \n\x05\x04\x17\x02\x01\x05\x12\x04\xa8\x01\x04\n\n\r\n\x05\x04\x17\x02\ + \x01\x01\x12\x04\xa8\x01\x0b\x0e\n\r\n\x05\x04\x17\x02\x01\x03\x12\x04\ + \xa8\x01\x11\x12\n\x0c\n\x02\x04\x18\x12\x06\xab\x01\0\xae\x01\x01\n\x0b\ + \n\x03\x04\x18\x01\x12\x04\xab\x01\x08\x14\n\x0c\n\x04\x04\x18\x02\0\x12\ + \x04\xac\x01\x04\x15\n\x0f\n\x05\x04\x18\x02\0\x04\x12\x06\xac\x01\x04\ + \xab\x01\x16\n\r\n\x05\x04\x18\x02\0\x05\x12\x04\xac\x01\x04\n\n\r\n\x05\ + \x04\x18\x02\0\x01\x12\x04\xac\x01\x0b\x10\n\r\n\x05\x04\x18\x02\0\x03\ + \x12\x04\xac\x01\x13\x14\n\x0c\n\x04\x04\x18\x02\x01\x12\x04\xad\x01\x04\ + \x14\n\x0f\n\x05\x04\x18\x02\x01\x04\x12\x06\xad\x01\x04\xac\x01\x15\n\r\ + \n\x05\x04\x18\x02\x01\x06\x12\x04\xad\x01\x04\x0b\n\r\n\x05\x04\x18\x02\ + \x01\x01\x12\x04\xad\x01\x0c\x0f\n\r\n\x05\x04\x18\x02\x01\x03\x12\x04\ + \xad\x01\x12\x13\n\x0c\n\x02\x04\x19\x12\x06\xb0\x01\0\xb3\x01\x01\n\x0b\ + \n\x03\x04\x19\x01\x12\x04\xb0\x01\x08\x10\n\x0c\n\x04\x04\x19\x02\0\x12\ + \x04\xb1\x01\x04\x19\n\x0f\n\x05\x04\x19\x02\0\x04\x12\x06\xb1\x01\x04\ + \xb0\x01\x12\n\r\n\x05\x04\x19\x02\0\x05\x12\x04\xb1\x01\x04\n\n\r\n\x05\ + \x04\x19\x02\0\x01\x12\x04\xb1\x01\x0b\x14\n\r\n\x05\x04\x19\x02\0\x03\ + \x12\x04\xb1\x01\x17\x18\n\x0c\n\x04\x04\x19\x02\x01\x12\x04\xb2\x01\x04\ + \x13\n\x0f\n\x05\x04\x19\x02\x01\x04\x12\x06\xb2\x01\x04\xb1\x01\x19\n\r\ + \n\x05\x04\x19\x02\x01\x05\x12\x04\xb2\x01\x04\n\n\r\n\x05\x04\x19\x02\ + \x01\x01\x12\x04\xb2\x01\x0b\x0e\n\r\n\x05\x04\x19\x02\x01\x03\x12\x04\ + \xb2\x01\x11\x12\n\x0c\n\x02\x04\x1a\x12\x06\xb5\x01\0\xb8\x01\x01\n\x0b\ + \n\x03\x04\x1a\x01\x12\x04\xb5\x01\x08\x11\n\x0c\n\x04\x04\x1a\x02\0\x12\ + \x04\xb6\x01\x04\x15\n\x0f\n\x05\x04\x1a\x02\0\x04\x12\x06\xb6\x01\x04\ + \xb5\x01\x13\n\r\n\x05\x04\x1a\x02\0\x05\x12\x04\xb6\x01\x04\n\n\r\n\x05\ + \x04\x1a\x02\0\x01\x12\x04\xb6\x01\x0b\x10\n\r\n\x05\x04\x1a\x02\0\x03\ + \x12\x04\xb6\x01\x13\x14\n\x0c\n\x04\x04\x1a\x02\x01\x12\x04\xb7\x01\x04\ + \x14\n\x0f\n\x05\x04\x1a\x02\x01\x04\x12\x06\xb7\x01\x04\xb6\x01\x15\n\r\ + \n\x05\x04\x1a\x02\x01\x06\x12\x04\xb7\x01\x04\x0b\n\r\n\x05\x04\x1a\x02\ + \x01\x01\x12\x04\xb7\x01\x0c\x0f\n\r\n\x05\x04\x1a\x02\x01\x03\x12\x04\ + \xb7\x01\x12\x13\n\x0c\n\x02\x04\x1b\x12\x06\xba\x01\0\xc4\x01\x01\n\x0b\ + \n\x03\x04\x1b\x01\x12\x04\xba\x01\x08\x11\n\x0c\n\x04\x04\x1b\x02\0\x12\ + \x04\xbb\x01\x04\x19\n\x0f\n\x05\x04\x1b\x02\0\x04\x12\x06\xbb\x01\x04\ + \xba\x01\x13\n\r\n\x05\x04\x1b\x02\0\x05\x12\x04\xbb\x01\x04\n\n\r\n\x05\ + \x04\x1b\x02\0\x01\x12\x04\xbb\x01\x0b\x14\n\r\n\x05\x04\x1b\x02\0\x03\ + \x12\x04\xbb\x01\x17\x18\n\x0c\n\x04\x04\x1b\x02\x01\x12\x04\xbc\x01\x04\ + \x13\n\x0f\n\x05\x04\x1b\x02\x01\x04\x12\x06\xbc\x01\x04\xbb\x01\x19\n\r\ + \n\x05\x04\x1b\x02\x01\x05\x12\x04\xbc\x01\x04\n\n\r\n\x05\x04\x1b\x02\ + \x01\x01\x12\x04\xbc\x01\x0b\x0e\n\r\n\x05\x04\x1b\x02\x01\x03\x12\x04\ + \xbc\x01\x11\x12\n\x0c\n\x04\x04\x1b\x02\x02\x12\x04\xbd\x01\x04\x15\n\ + \x0f\n\x05\x04\x1b\x02\x02\x04\x12\x06\xbd\x01\x04\xbc\x01\x13\n\r\n\x05\ + \x04\x1b\x02\x02\x05\x12\x04\xbd\x01\x04\n\n\r\n\x05\x04\x1b\x02\x02\x01\ + \x12\x04\xbd\x01\x0b\x10\n\r\n\x05\x04\x1b\x02\x02\x03\x12\x04\xbd\x01\ + \x13\x14\n\x0c\n\x04\x04\x1b\x02\x03\x12\x04\xbe\x01\x04\x14\n\x0f\n\x05\ + \x04\x1b\x02\x03\x04\x12\x06\xbe\x01\x04\xbd\x01\x15\n\r\n\x05\x04\x1b\ + \x02\x03\x05\x12\x04\xbe\x01\x04\n\n\r\n\x05\x04\x1b\x02\x03\x01\x12\x04\ + \xbe\x01\x0b\x0f\n\r\n\x05\x04\x1b\x02\x03\x03\x12\x04\xbe\x01\x12\x13\n\ + \x0c\n\x04\x04\x1b\x02\x04\x12\x04\xbf\x01\x04\x15\n\x0f\n\x05\x04\x1b\ + \x02\x04\x04\x12\x06\xbf\x01\x04\xbe\x01\x14\n\r\n\x05\x04\x1b\x02\x04\ + \x05\x12\x04\xbf\x01\x04\n\n\r\n\x05\x04\x1b\x02\x04\x01\x12\x04\xbf\x01\ + \x0b\x10\n\r\n\x05\x04\x1b\x02\x04\x03\x12\x04\xbf\x01\x13\x14\n\x0c\n\ + \x04\x04\x1b\x02\x05\x12\x04\xc0\x01\x04\x1b\n\x0f\n\x05\x04\x1b\x02\x05\ + \x04\x12\x06\xc0\x01\x04\xbf\x01\x15\n\r\n\x05\x04\x1b\x02\x05\x05\x12\ + \x04\xc0\x01\x04\x08\n\r\n\x05\x04\x1b\x02\x05\x01\x12\x04\xc0\x01\t\x16\ + \n\r\n\x05\x04\x1b\x02\x05\x03\x12\x04\xc0\x01\x19\x1a\n\x0c\n\x04\x04\ + \x1b\x02\x06\x12\x04\xc1\x01\x04\x1a\n\x0f\n\x05\x04\x1b\x02\x06\x04\x12\ + \x06\xc1\x01\x04\xc0\x01\x1b\n\r\n\x05\x04\x1b\x02\x06\x05\x12\x04\xc1\ + \x01\x04\x08\n\r\n\x05\x04\x1b\x02\x06\x01\x12\x04\xc1\x01\t\x15\n\r\n\ + \x05\x04\x1b\x02\x06\x03\x12\x04\xc1\x01\x18\x19\n\x0c\n\x04\x04\x1b\x02\ + \x07\x12\x04\xc2\x01\x04\x1b\n\x0f\n\x05\x04\x1b\x02\x07\x04\x12\x06\xc2\ + \x01\x04\xc1\x01\x1a\n\r\n\x05\x04\x1b\x02\x07\x05\x12\x04\xc2\x01\x04\n\ + \n\r\n\x05\x04\x1b\x02\x07\x01\x12\x04\xc2\x01\x0b\x16\n\r\n\x05\x04\x1b\ + \x02\x07\x03\x12\x04\xc2\x01\x19\x1a\n\x0c\n\x04\x04\x1b\x02\x08\x12\x04\ + \xc3\x01\x04'\n\r\n\x05\x04\x1b\x02\x08\x04\x12\x04\xc3\x01\x04\x0c\n\r\ + \n\x05\x04\x1b\x02\x08\x05\x12\x04\xc3\x01\r\x13\n\r\n\x05\x04\x1b\x02\ + \x08\x01\x12\x04\xc3\x01\x14\"\n\r\n\x05\x04\x1b\x02\x08\x03\x12\x04\xc3\ + \x01%&\n\x0c\n\x02\x04\x1c\x12\x06\xc6\x01\0\xc9\x01\x01\n\x0b\n\x03\x04\ + \x1c\x01\x12\x04\xc6\x01\x08\x12\n\x0c\n\x04\x04\x1c\x02\0\x12\x04\xc7\ + \x01\x04\x15\n\x0f\n\x05\x04\x1c\x02\0\x04\x12\x06\xc7\x01\x04\xc6\x01\ + \x14\n\r\n\x05\x04\x1c\x02\0\x05\x12\x04\xc7\x01\x04\n\n\r\n\x05\x04\x1c\ + \x02\0\x01\x12\x04\xc7\x01\x0b\x10\n\r\n\x05\x04\x1c\x02\0\x03\x12\x04\ + \xc7\x01\x13\x14\n\x0c\n\x04\x04\x1c\x02\x01\x12\x04\xc8\x01\x04\x14\n\ + \x0f\n\x05\x04\x1c\x02\x01\x04\x12\x06\xc8\x01\x04\xc7\x01\x15\n\r\n\x05\ + \x04\x1c\x02\x01\x06\x12\x04\xc8\x01\x04\x0b\n\r\n\x05\x04\x1c\x02\x01\ + \x01\x12\x04\xc8\x01\x0c\x0f\n\r\n\x05\x04\x1c\x02\x01\x03\x12\x04\xc8\ + \x01\x12\x13\n\x0c\n\x02\x04\x1d\x12\x06\xcb\x01\0\xce\x01\x01\n\x0b\n\ + \x03\x04\x1d\x01\x12\x04\xcb\x01\x08\x11\n\x0c\n\x04\x04\x1d\x02\0\x12\ + \x04\xcc\x01\x04\x19\n\x0f\n\x05\x04\x1d\x02\0\x04\x12\x06\xcc\x01\x04\ + \xcb\x01\x13\n\r\n\x05\x04\x1d\x02\0\x05\x12\x04\xcc\x01\x04\n\n\r\n\x05\ + \x04\x1d\x02\0\x01\x12\x04\xcc\x01\x0b\x14\n\r\n\x05\x04\x1d\x02\0\x03\ + \x12\x04\xcc\x01\x17\x18\n\x0c\n\x04\x04\x1d\x02\x01\x12\x04\xcd\x01\x04\ + \x13\n\x0f\n\x05\x04\x1d\x02\x01\x04\x12\x06\xcd\x01\x04\xcc\x01\x19\n\r\ + \n\x05\x04\x1d\x02\x01\x05\x12\x04\xcd\x01\x04\n\n\r\n\x05\x04\x1d\x02\ + \x01\x01\x12\x04\xcd\x01\x0b\x0e\n\r\n\x05\x04\x1d\x02\x01\x03\x12\x04\ + \xcd\x01\x11\x12\n\x0c\n\x02\x04\x1e\x12\x06\xd0\x01\0\xd3\x01\x01\n\x0b\ + \n\x03\x04\x1e\x01\x12\x04\xd0\x01\x08\x12\n\x0c\n\x04\x04\x1e\x02\0\x12\ + \x04\xd1\x01\x04\x15\n\x0f\n\x05\x04\x1e\x02\0\x04\x12\x06\xd1\x01\x04\ + \xd0\x01\x14\n\r\n\x05\x04\x1e\x02\0\x05\x12\x04\xd1\x01\x04\n\n\r\n\x05\ + \x04\x1e\x02\0\x01\x12\x04\xd1\x01\x0b\x10\n\r\n\x05\x04\x1e\x02\0\x03\ + \x12\x04\xd1\x01\x13\x14\n\x0c\n\x04\x04\x1e\x02\x01\x12\x04\xd2\x01\x04\ + \x14\n\x0f\n\x05\x04\x1e\x02\x01\x04\x12\x06\xd2\x01\x04\xd1\x01\x15\n\r\ + \n\x05\x04\x1e\x02\x01\x06\x12\x04\xd2\x01\x04\x0b\n\r\n\x05\x04\x1e\x02\ + \x01\x01\x12\x04\xd2\x01\x0c\x0f\n\r\n\x05\x04\x1e\x02\x01\x03\x12\x04\ + \xd2\x01\x12\x13b\x06proto3\ "; static mut file_descriptor_proto_lazy: ::protobuf::lazy::Lazy<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::lazy::Lazy { diff --git a/src/server/server.rs b/src/server/server.rs index 234f6bb..df48984 100644 --- a/src/server/server.rs +++ b/src/server/server.rs @@ -1,4 +1,5 @@ use std::collections::HashMap; +use std::io::{BufRead, BufReader}; use std::path::Path; use std::sync::mpsc::{self, Receiver, SyncSender}; use std::sync::{Arc, Mutex}; @@ -12,6 +13,7 @@ use grpcio::{ChannelBuilder, EnvBuilder, Environment, RpcContext, ServerBuilder, use log::*; use protobuf::Message; use raft::eraftpb::{ConfChange, ConfChangeType, Entry, EntryType, Message as RaftMessage}; +use stringreader::StringReader; use tantivy::collector::{Count, FacetCollector, MultiCollector, TopDocs}; use tantivy::query::{QueryParser, TermQuery}; use tantivy::schema::{Field, FieldType, IndexRecordOption, Schema}; @@ -20,9 +22,10 @@ use tantivy::{Document, Index, IndexWriter, Term}; use crate::client::client::{create_client, Clerk}; use crate::proto::indexpb_grpc::{self, Index as IndexService, IndexClient}; use crate::proto::indexrpcpb::{ - ApplyReq, CommitResp, ConfChangeReq, DeleteResp, GetReq, GetResp, JoinReq, LeaveReq, MergeResp, - MetricsReq, MetricsResp, PeersReq, PeersResp, ProbeReq, ProbeResp, PutResp, RaftDone, ReqType, - RespErr, RollbackResp, SchemaReq, SchemaResp, SearchReq, SearchResp, + ApplyReq, BulkDeleteResp, BulkPutResp, CommitResp, ConfChangeReq, DeleteResp, GetReq, GetResp, + JoinReq, LeaveReq, MergeResp, MetricsReq, MetricsResp, PeersReq, PeersResp, ProbeReq, + ProbeResp, PutResp, RaftDone, ReqType, RespErr, RollbackResp, SchemaReq, SchemaResp, SearchReq, + SearchResp, }; use crate::server::metrics::Metrics; use crate::server::peer::PeerMessage; @@ -40,7 +43,7 @@ pub struct IndexServer { rf_message_ch: SyncSender, notify_ch_map: Arc>>>, index: Arc, - unique_key_field_name: String, + // unique_key_field_name: String, index_writer: Arc>, metrics: Arc>, } @@ -53,7 +56,6 @@ impl IndexServer { peers_addr: HashMap, data_directory: &str, schema_file: &str, - unique_key_field_name: &str, ) { let mut peers = HashMap::new(); peers.insert(id, create_client(&format!("{}:{}", host, port))); @@ -64,13 +66,14 @@ impl IndexServer { let raft_path = Path::new(data_directory).join(Path::new("raft")); fs::create_dir_all(&raft_path).unwrap_or_default(); + let schema_content = fs::read_to_string(schema_file).unwrap(); + let schema: Schema = + serde_json::from_str(&schema_content).expect("error while reading json"); + let index_path = Path::new(data_directory).join(Path::new("index")); let index = if index_path.exists() { Index::open_in_dir(index_path.to_str().unwrap()).unwrap() } else { - let schema_content = fs::read_to_string(schema_file).unwrap(); - let schema: Schema = - serde_json::from_str(&schema_content).expect("error while reading json"); fs::create_dir_all(&index_path).unwrap_or_default(); Index::create_in_dir(index_path.to_str().unwrap(), schema).unwrap() }; @@ -98,7 +101,7 @@ impl IndexServer { rf_message_ch: rf_sender, notify_ch_map: Arc::new(Mutex::new(HashMap::new())), index: Arc::new(index), - unique_key_field_name: unique_key_field_name.to_string(), + // unique_key_field_name: unique_key_field_name.to_string(), index_writer: Arc::new(Mutex::new(index_writer)), metrics: Arc::new(Mutex::new(Metrics::new(id))), }; @@ -203,7 +206,6 @@ impl IndexServer { let peers = self.peers.clone(); let peers_addr = self.peers_addr.clone(); let index = self.index.clone(); - let unique_key_field_name = self.unique_key_field_name.clone(); let index_writer = self.index_writer.clone(); let metrics = self.metrics.clone(); @@ -221,7 +223,6 @@ impl IndexServer { peers.clone(), peers_addr.clone(), index.clone(), - unique_key_field_name.as_str(), index_writer.clone(), metrics.clone(), ); @@ -261,7 +262,6 @@ impl IndexServer { peers: Arc>>, peers_addr: Arc>>, index: Arc, - unique_key_field_name: &str, index_writer: Arc>, metrics: Arc>, ) -> NotifyArgs { @@ -296,19 +296,20 @@ impl IndexServer { ReqType::Put => { metrics.lock().unwrap().inc_request_count("put"); - let field = index.schema().get_field(unique_key_field_name).unwrap(); + let doc_id_field = index.schema().get_field("_id").unwrap(); - let mut doc = index + let doc = index .schema() - .parse_document(req.get_put_req().get_fields()) + .parse_document(req.get_put_req().get_doc()) .unwrap(); - doc.add_text(field, req.get_put_req().get_doc_id()); + let doc_id = doc.get_first(doc_id_field).unwrap(); // delete doc index_writer .lock() .unwrap() - .delete_term(Term::from_field_text(field, req.get_put_req().get_doc_id())); + .delete_term(Term::from_field_text(doc_id_field, doc_id.text().unwrap())); + // add doc let opstamp = index_writer.lock().unwrap().add_document(doc); @@ -324,7 +325,7 @@ impl IndexServer { .lock() .unwrap() .delete_term(Term::from_field_text( - index.schema().get_field(unique_key_field_name).unwrap(), + index.schema().get_field("_id").unwrap(), req.get_delete_req().get_doc_id(), )); @@ -333,6 +334,62 @@ impl IndexServer { NotifyArgs(term, serde_json::to_string(&ret).unwrap(), RespErr::OK) } + ReqType::BulkPut => { + metrics.lock().unwrap().inc_request_count("bulk_put"); + + let doc_id_field = index.schema().get_field("_id").unwrap(); + let mut opstamp = 0; + + let mut reader = + BufReader::new(StringReader::new(req.get_bulk_put_req().get_docs())); + let mut line = String::new(); + while reader.read_line(&mut line).unwrap() > 0 { + let doc = index.schema().parse_document(&line).unwrap(); + let doc_id = doc.get_first(doc_id_field).unwrap(); + + // delete doc + index_writer + .lock() + .unwrap() + .delete_term(Term::from_field_text(doc_id_field, doc_id.text().unwrap())); + + // add doc + opstamp = index_writer.lock().unwrap().add_document(doc); + + line.clear(); + } + + let mut ret = HashMap::new(); + ret.insert("opstamp", opstamp); + + NotifyArgs(term, serde_json::to_string(&ret).unwrap(), RespErr::OK) + } + ReqType::BulkDelete => { + metrics.lock().unwrap().inc_request_count("bulk_delete"); + + let doc_id_field = index.schema().get_field("_id").unwrap(); + let mut opstamp = 0; + + let mut reader = + BufReader::new(StringReader::new(req.get_bulk_delete_req().get_docs())); + let mut line = String::new(); + while reader.read_line(&mut line).unwrap() > 0 { + let doc = index.schema().parse_document(&line).unwrap(); + let doc_id = doc.get_first(doc_id_field).unwrap(); + + opstamp = index_writer + .lock() + .unwrap() + .delete_term(Term::from_field_text(doc_id_field, doc_id.text().unwrap())); + + line.clear(); + } + + let mut ret = HashMap::new(); + ret.insert("opstamp", opstamp); + + NotifyArgs(term, serde_json::to_string(&ret).unwrap(), RespErr::OK) + } ReqType::Commit => { metrics.lock().unwrap().inc_request_count("commit"); @@ -566,10 +623,7 @@ impl IndexService for IndexServer { self.metrics.lock().unwrap().inc_request_count("get"); let t = Term::from_field_text( - self.index - .schema() - .get_field(&self.unique_key_field_name) - .unwrap(), + self.index.schema().get_field("_id").unwrap(), req.get_doc_id(), ); let tq = TermQuery::new(t, IndexRecordOption::Basic); @@ -625,6 +679,38 @@ impl IndexService for IndexServer { ) } + fn bulk_put(&mut self, ctx: RpcContext, req: ApplyReq, sink: UnarySink) { + debug!("request: {:?}", req); + + let (err, ret) = Self::start_op(self, &req); + let mut resp = BulkPutResp::new(); + resp.set_err(err); + resp.set_value(ret); + + debug!("response: {:?}", resp); + + ctx.spawn( + sink.success(resp) + .map_err(move |e| error!("failed to reply {:?}: {:?}", req, e)), + ) + } + + fn bulk_delete(&mut self, ctx: RpcContext, req: ApplyReq, sink: UnarySink) { + debug!("request: {:?}", req); + + let (err, ret) = Self::start_op(self, &req); + let mut resp = BulkDeleteResp::new(); + resp.set_err(err); + resp.set_value(ret); + + debug!("response: {:?}", resp); + + ctx.spawn( + sink.success(resp) + .map_err(move |e| error!("failed to reply {:?}: {:?}", req, e)), + ) + } + fn commit(&mut self, ctx: RpcContext, req: ApplyReq, sink: UnarySink) { debug!("request: {:?}", req);