diff --git a/Cargo.toml b/Cargo.toml
index be2c8e3..c05bf64 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -31,6 +31,7 @@ iron = "0.6.1"
job_scheduler = "1.1.0"
log = "0.4.8"
logger = "0.4.0"
+num_cpus = "1.11.1"
persistent = "0.4.0"
prometheus = "0.7.0"
protobuf = "2.8.0"
diff --git a/docs/print.html b/docs/print.html
index c0e5208..c3c0882 100644
--- a/docs/print.html
+++ b/docs/print.html
@@ -770,19 +770,29 @@
-i, --id <ID>
- Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default ID. [default: 1]
+ Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default
+ ID. [default: 1]
-H, --host <HOST>
- Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]
+ Host address. Must specify the host name or IP address. If not specified, use the default address. [default:
+ 0.0.0.0]
-P, --port <PORT>
- Port number. This port is used for communication via gRPC. If not specified, use the default port. [default: 5000]
+ Port number. This port is used for communication via gRPC. If not specified, use the default port. [default:
+ 5000]
-p, --peers <ID=IP:PORT>...
- Server ID and addresses in an existing cluster separated by ",". If specified, the server will join the cluster.
+ Server ID and addresses in an existing cluster separated by ",". If specified, the server will join the
+ cluster.
-d, --data-directory <DATA_DIRECTORY>
- Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory. [default: ./data]
+ Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory.
+ [default: ./data]
-s, --schema-file <SCHEMA_FILE>
- Schema file. Must specify An existing file name. If not specified, use the default schema file. [default: ./etc/schema.json]
--u, --unique-key-field-name <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]
+ Schema file. Must specify An existing file name. If not specified, use the default schema file. [default:
+ ./etc/schema.json]
+-t, --indexer-threads <INDEXER_THREADS>
+ Number of indexer threads. If not specified, number of CPU cores - 1 will be used. [default: 7]
+
+-m, --indexer-memory-size <INDEXER_MEMORY_SIZE>
+ Total memory size (in bytes) used by the indexer. It will be split for the different thread. If not
+ specified, use the default. [default: 1000000000]
To start a server with default options:
@@ -794,8 +804,7 @@
--host=0.0.0.0 \
--port=5001 \
--data-directory=./data/1 \
- --schema-file=./etc/schema.json \
- --unique-key-field-name=id
+ --schema-file=./etc/schema.json
The bayard probe CLI probes the server.
diff --git a/docs/reference/bayard/serve.html b/docs/reference/bayard/serve.html
index 0a0a275..2732d59 100644
--- a/docs/reference/bayard/serve.html
+++ b/docs/reference/bayard/serve.html
@@ -159,19 +159,29 @@
-i, --id <ID>
- Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default ID. [default: 1]
+ Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default
+ ID. [default: 1]
-H, --host <HOST>
- Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]
+ Host address. Must specify the host name or IP address. If not specified, use the default address. [default:
+ 0.0.0.0]
-P, --port <PORT>
- Port number. This port is used for communication via gRPC. If not specified, use the default port. [default: 5000]
+ Port number. This port is used for communication via gRPC. If not specified, use the default port. [default:
+ 5000]
-p, --peers <ID=IP:PORT>...
- Server ID and addresses in an existing cluster separated by ",". If specified, the server will join the cluster.
+ Server ID and addresses in an existing cluster separated by ",". If specified, the server will join the
+ cluster.
-d, --data-directory <DATA_DIRECTORY>
- Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory. [default: ./data]
+ Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory.
+ [default: ./data]
-s, --schema-file <SCHEMA_FILE>
- Schema file. Must specify An existing file name. If not specified, use the default schema file. [default: ./etc/schema.json]
--u, --unique-key-field-name <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]
+ Schema file. Must specify An existing file name. If not specified, use the default schema file. [default:
+ ./etc/schema.json]
+-t, --indexer-threads <INDEXER_THREADS>
+ Number of indexer threads. If not specified, number of CPU cores - 1 will be used. [default: 7]
+
+-m, --indexer-memory-size <INDEXER_MEMORY_SIZE>
+ Total memory size (in bytes) used by the indexer. It will be split for the different thread. If not
+ specified, use the default. [default: 1000000000]
To start a server with default options:
@@ -183,8 +193,7 @@
--host=0.0.0.0 \
--port=5001 \
--data-directory=./data/1 \
- --schema-file=./etc/schema.json \
- --unique-key-field-name=id
+ --schema-file=./etc/schema.json
diff --git a/docs/searchindex.js b/docs/searchindex.js
index 8b01824..4f87be3 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#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","accessing_over_http.html#accessing-over-the-http","accessing_over_http.html#using-gateway","accessing_over_http.html#rest-api","scheduling_jobs.html#scheduling-jobs","scheduling_jobs.html#using-job-scheduler","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.html#api-list","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":14,"breadcrumbs":3,"title":1},"103":{"body":14,"breadcrumbs":3,"title":1},"104":{"body":6,"breadcrumbs":4,"title":2},"105":{"body":3,"breadcrumbs":3,"title":1},"106":{"body":10,"breadcrumbs":3,"title":1},"107":{"body":44,"breadcrumbs":3,"title":1},"108":{"body":12,"breadcrumbs":4,"title":2},"109":{"body":17,"breadcrumbs":3,"title":1},"11":{"body":12,"breadcrumbs":2,"title":2},"110":{"body":9,"breadcrumbs":4,"title":2},"111":{"body":3,"breadcrumbs":3,"title":1},"112":{"body":10,"breadcrumbs":3,"title":1},"113":{"body":46,"breadcrumbs":3,"title":1},"114":{"body":12,"breadcrumbs":3,"title":1},"115":{"body":0,"breadcrumbs":3,"title":2},"116":{"body":37,"breadcrumbs":3,"title":2},"117":{"body":4,"breadcrumbs":4,"title":2},"118":{"body":1,"breadcrumbs":3,"title":1},"119":{"body":5,"breadcrumbs":3,"title":1},"12":{"body":42,"breadcrumbs":2,"title":2},"120":{"body":9,"breadcrumbs":4,"title":2},"121":{"body":1,"breadcrumbs":3,"title":1},"122":{"body":6,"breadcrumbs":3,"title":1},"123":{"body":12,"breadcrumbs":4,"title":2},"124":{"body":1,"breadcrumbs":3,"title":1},"125":{"body":5,"breadcrumbs":3,"title":1},"126":{"body":13,"breadcrumbs":4,"title":2},"127":{"body":4,"breadcrumbs":3,"title":1},"128":{"body":13,"breadcrumbs":4,"title":2},"129":{"body":6,"breadcrumbs":4,"title":2},"13":{"body":13,"breadcrumbs":3,"title":3},"130":{"body":27,"breadcrumbs":3,"title":1},"131":{"body":5,"breadcrumbs":3,"title":1},"132":{"body":1,"breadcrumbs":3,"title":1},"133":{"body":6,"breadcrumbs":4,"title":2},"134":{"body":4,"breadcrumbs":3,"title":1},"135":{"body":6,"breadcrumbs":4,"title":2},"136":{"body":4,"breadcrumbs":3,"title":1},"137":{"body":6,"breadcrumbs":4,"title":2},"138":{"body":5,"breadcrumbs":4,"title":2},"139":{"body":20,"breadcrumbs":3,"title":1},"14":{"body":95,"breadcrumbs":2,"title":2},"140":{"body":5,"breadcrumbs":4,"title":2},"141":{"body":1,"breadcrumbs":3,"title":1},"142":{"body":67,"breadcrumbs":4,"title":2},"143":{"body":15,"breadcrumbs":3,"title":1},"144":{"body":6,"breadcrumbs":4,"title":2},"145":{"body":1,"breadcrumbs":3,"title":1},"146":{"body":5,"breadcrumbs":3,"title":1},"147":{"body":10,"breadcrumbs":4,"title":2},"148":{"body":1,"breadcrumbs":3,"title":1},"149":{"body":5,"breadcrumbs":3,"title":1},"15":{"body":11,"breadcrumbs":2,"title":2},"150":{"body":6,"breadcrumbs":4,"title":2},"151":{"body":1,"breadcrumbs":3,"title":1},"152":{"body":6,"breadcrumbs":3,"title":1},"153":{"body":7,"breadcrumbs":4,"title":2},"154":{"body":1,"breadcrumbs":3,"title":1},"155":{"body":6,"breadcrumbs":3,"title":1},"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":90,"breadcrumbs":6,"title":6},"27":{"body":24,"breadcrumbs":2,"title":2},"28":{"body":33,"breadcrumbs":3,"title":3},"29":{"body":16,"breadcrumbs":3,"title":3},"3":{"body":1,"breadcrumbs":3,"title":3},"30":{"body":20,"breadcrumbs":2,"title":2},"31":{"body":4,"breadcrumbs":2,"title":2},"32":{"body":8,"breadcrumbs":2,"title":2},"33":{"body":30,"breadcrumbs":3,"title":3},"34":{"body":9,"breadcrumbs":2,"title":2},"35":{"body":9,"breadcrumbs":3,"title":3},"36":{"body":15,"breadcrumbs":3,"title":3},"37":{"body":2,"breadcrumbs":1,"title":1},"38":{"body":6,"breadcrumbs":2,"title":1},"39":{"body":2,"breadcrumbs":2,"title":1},"4":{"body":2,"breadcrumbs":1,"title":1},"40":{"body":10,"breadcrumbs":2,"title":1},"41":{"body":145,"breadcrumbs":2,"title":1},"42":{"body":5,"breadcrumbs":2,"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":123,"breadcrumbs":3,"title":1},"47":{"body":22,"breadcrumbs":3,"title":1},"48":{"body":5,"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":12,"breadcrumbs":3,"title":1},"53":{"body":10,"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":14,"breadcrumbs":3,"title":1},"58":{"body":13,"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":9,"breadcrumbs":3,"title":1},"62":{"body":12,"breadcrumbs":3,"title":1},"63":{"body":11,"breadcrumbs":4,"title":2},"64":{"body":3,"breadcrumbs":3,"title":1},"65":{"body":10,"breadcrumbs":3,"title":1},"66":{"body":25,"breadcrumbs":3,"title":1},"67":{"body":13,"breadcrumbs":3,"title":1},"68":{"body":14,"breadcrumbs":4,"title":2},"69":{"body":5,"breadcrumbs":3,"title":1},"7":{"body":15,"breadcrumbs":1,"title":1},"70":{"body":18,"breadcrumbs":3,"title":1},"71":{"body":37,"breadcrumbs":3,"title":1},"72":{"body":13,"breadcrumbs":3,"title":1},"73":{"body":6,"breadcrumbs":3,"title":1},"74":{"body":3,"breadcrumbs":3,"title":1},"75":{"body":10,"breadcrumbs":3,"title":1},"76":{"body":21,"breadcrumbs":3,"title":1},"77":{"body":5,"breadcrumbs":3,"title":1},"78":{"body":7,"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":11,"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":12,"breadcrumbs":3,"title":1},"88":{"body":7,"breadcrumbs":4,"title":2},"89":{"body":3,"breadcrumbs":3,"title":1},"9":{"body":126,"breadcrumbs":6,"title":6},"90":{"body":10,"breadcrumbs":3,"title":1},"91":{"body":14,"breadcrumbs":3,"title":1},"92":{"body":14,"breadcrumbs":3,"title":1},"93":{"body":6,"breadcrumbs":4,"title":2},"94":{"body":4,"breadcrumbs":3,"title":1},"95":{"body":32,"breadcrumbs":3,"title":1},"96":{"body":56,"breadcrumbs":3,"title":1},"97":{"body":5,"breadcrumbs":3,"title":1},"98":{"body":18,"breadcrumbs":3,"title":1},"99":{"body":8,"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 schema [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]","breadcrumbs":"Reference » bayard » OPTIONS","id":"102","title":"OPTIONS"},"103":{"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":"103","title":"EXAMPLES"},"104":{"body":"The bayard schedule CLI starts the job scheduler.","breadcrumbs":"Reference » bayard » bayard schedule","id":"104","title":"bayard schedule"},"105":{"body":"bayard schedule [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"105","title":"USAGE"},"106":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"106","title":"FLAGS"},"107":{"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":"107","title":"OPTIONS"},"108":{"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":"108","title":"SCHEDULE FORMAT"},"109":{"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":"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 bayard gateway CLI starts a gateway for access the server over HTTP.","breadcrumbs":"Reference » bayard » bayard gateway","id":"110","title":"bayard gateway"},"111":{"body":"bayard gateway [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"111","title":"USAGE"},"112":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"112","title":"FLAGS"},"113":{"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":"113","title":"OPTIONS"},"114":{"body":"To start gateway with default options: $ ./bin/bayard gateway To start gateway with options: $ ./bin/bayard gateway --servers=127.0.0.1:5001,127.0.0.1:5002,127.0.0.1:5003","breadcrumbs":"Reference » bayard » EXAMPLES","id":"114","title":"EXAMPLES"},"115":{"body":"","breadcrumbs":"Reference » REST API","id":"115","title":"REST API"},"116":{"body":"Probe API Peers API Metrics API Put API Get API Delete API Search API Commit API Rollback API Merge API Schema API 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 » API list","id":"116","title":"API list"},"117":{"body":"Probe API probes the server.","breadcrumbs":"Reference » APIs » Probe API","id":"117","title":"Probe API"},"118":{"body":"GET /probe","breadcrumbs":"Reference » APIs » Request","id":"118","title":"Request"},"119":{"body":"To probe a server: $ curl -X GET 'http://localhost:8000/probe'","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: { \"_id\": [ \"1\" ], \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1152 ], \"timestamp\": [ \"2019-12-19T01:41:00+00:00\" ], \"url\": [ \"https://github.com/bayard-search/bayard\" ]\n}","breadcrumbs":"Getting document","id":"12","title":"Getting document"},"120":{"body":"Peers API shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » APIs » Peers API","id":"120","title":"Peers API"},"121":{"body":"GET /peers","breadcrumbs":"Reference » APIs » Request","id":"121","title":"Request"},"122":{"body":"To show peers of the cluster: $ curl -X GET 'http://localhost:8000/peers'","breadcrumbs":"Reference » APIs » Examples","id":"122","title":"Examples"},"123":{"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":"123","title":"Metrics API"},"124":{"body":"GET /metrics","breadcrumbs":"Reference » APIs » Request","id":"124","title":"Request"},"125":{"body":"To show metrics: $ curl -X GET 'http://localhost:8000/metrics'","breadcrumbs":"Reference » APIs » Examples","id":"125","title":"Examples"},"126":{"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":"126","title":"Put API"},"127":{"body":"PUT /index/docs/\nPUT /index/docs","breadcrumbs":"Reference » APIs » Request","id":"127","title":"Request"},"128":{"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":"128","title":"Path parameters"},"129":{"body":" Document(s) expressed in JSON or JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"129","title":"Request body"},"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":"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":"130","title":"Example"},"131":{"body":"Get API gets a document with the specified ID.","breadcrumbs":"Reference » APIs » Get API","id":"131","title":"Get API"},"132":{"body":"GET /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"132","title":"Request"},"133":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"133","title":"Path parameters"},"134":{"body":"To get a document: $ curl -X GET 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"134","title":"Examples"},"135":{"body":"Delete API deletes a document with the specified ID.","breadcrumbs":"Reference » APIs » Delete API","id":"135","title":"Delete API"},"136":{"body":"DELETE /index/docs/\nDELETE /index/docs","breadcrumbs":"Reference » APIs » Request","id":"136","title":"Request"},"137":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"137","title":"Path parameters"},"138":{"body":" Document(s) expressed in JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"138","title":"Request body"},"139":{"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":"139","title":"Examples"},"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\": { \"_id\": [ \"8\" ], \"category\": [ \"/category/search/library\", \"/language/rust\" ], \"description\": [ \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\" ], \"name\": [ \"Tantivy\" ], \"popularity\": [ 3142 ], \"timestamp\": [ \"2019-12-19T01:07:00+00:00\" ], \"url\": [ \"https://github.com/tantivy-search/tantivy\" ] }, \"score\": 1.5722498 }, { \"fields\": { \"_id\": [ \"1\" ], \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1152 ], \"timestamp\": [ \"2019-12-19T01:41:00+00:00\" ], \"url\": [ \"https://github.com/bayard-search/bayard\" ] }, \"score\": 1.5331805 } ], \"facet\": { \"category\": { \"/language/rust\": 2, \"/category/search/library\": 1, \"/category/search/server\": 1 } }\n}","breadcrumbs":"Searching documents","id":"14","title":"Searching documents"},"140":{"body":"Search API searches documents from the index.","breadcrumbs":"Reference » APIs » Search API","id":"140","title":"Search API"},"141":{"body":"GET /index/search","breadcrumbs":"Reference » APIs » Request","id":"141","title":"Request"},"142":{"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":"142","title":"Query parameters"},"143":{"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":"143","title":"Example"},"144":{"body":"Commit API commits updates made to the index.","breadcrumbs":"Reference » APIs » Commit API","id":"144","title":"Commit API"},"145":{"body":"GET /index/commit","breadcrumbs":"Reference » APIs » Request","id":"145","title":"Request"},"146":{"body":"To commit an index: $ curl -X GET 'http://localhost:8000/index/commit'","breadcrumbs":"Reference » APIs » Example","id":"146","title":"Example"},"147":{"body":"Rollback API rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » APIs » Rollback API","id":"147","title":"Rollback API"},"148":{"body":"GET /index/rollback","breadcrumbs":"Reference » APIs » Request","id":"148","title":"Request"},"149":{"body":"To rollback an index: $ curl -X GET 'http://localhost:8000/index/rollback'","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"},"150":{"body":"Merge API merges fragmented segments in the index.","breadcrumbs":"Reference » APIs » Merge API","id":"150","title":"Merge API"},"151":{"body":"GET /index/merge","breadcrumbs":"Reference » APIs » Request","id":"151","title":"Request"},"152":{"body":"To merge segments in the index: $ curl -X GET 'http://localhost:8000/index/merge'","breadcrumbs":"Reference » APIs » Examples","id":"152","title":"Examples"},"153":{"body":"Schema API shows the index schema that the server applied.","breadcrumbs":"Reference » APIs » Schema API","id":"153","title":"Schema API"},"154":{"body":"GET /index/schema","breadcrumbs":"Reference » APIs » Request","id":"154","title":"Request"},"155":{"body":"To show the index schema: $ curl -X GET 'http://localhost:8000/index/schema'","breadcrumbs":"Reference » APIs » Examples","id":"155","title":"Examples"},"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 $ ./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 $ ./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 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":"Bayard supports gRPC connections, but some users may want to use the traditional RESTful API over HTTP. Gateways are useful in such cases.","breadcrumbs":"Accessing over the HTTP","id":"29","title":"Accessing over the HTTP"},"3":{"body":"https://hub.docker.com/r/bayardsearch/bayard","breadcrumbs":"Docker container repository","id":"3","title":"Docker container repository"},"30":{"body":"Starting a Gateway is easy. $ ./bin/bayard gateway If you want to start a Gateway that connects to Bayard running in cluster mode, we recommend that you specify a flag as follows: $ ./bin/bayard gateway --servers=127.0.0.1:5001,127.0.0.1:5002,127.0.0.1:5003","breadcrumbs":"Using Gateway","id":"30","title":"Using Gateway"},"31":{"body":"See following documents: APIs","breadcrumbs":"REST API","id":"31","title":"REST API"},"32":{"body":"You can use the Job scheduler to execute periodic commits and index merges.","breadcrumbs":"Scheduling jobs","id":"32","title":"Scheduling jobs"},"33":{"body":"Start the job scheduler as follows: $ ./bin/bayard schedule To specify job scheduler settings: $ ./bin/bayard schedule --commit=\"0/10 * * * * * *\" --merge=\"0 0 2 * * * *\" The format of the settings is very similar to the crontab. sec min hour day-of-month month day-of-week year\n* * * * * * *","breadcrumbs":"Using Job scheduler","id":"33","title":"Using Job scheduler"},"34":{"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":"34","title":"Running on Docker"},"35":{"body":"You can pull the Docker container image with the following command: $ docker pull bayardsearch/bayard:latest","breadcrumbs":"Pulling Docker container","id":"35","title":"Pulling Docker container"},"36":{"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":"36","title":"Running Docker container"},"37":{"body":"bayard APIs","breadcrumbs":"Reference","id":"37","title":"Reference"},"38":{"body":"The bayard CLI manages server, cluster and index.","breadcrumbs":"Reference » bayard","id":"38","title":"bayard"},"39":{"body":"bayard ","breadcrumbs":"Reference » 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 » FLAGS","id":"40","title":"FLAGS"},"41":{"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":"41","title":"SUBCOMMANDS"},"42":{"body":"To print version information: $ ./bin/bayard -v","breadcrumbs":"Reference » EXAMPLES","id":"42","title":"EXAMPLES"},"43":{"body":"The bayard serve CLI starts the server.","breadcrumbs":"Reference » bayard » bayard serve","id":"43","title":"bayard serve"},"44":{"body":"bayard serve [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":"-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":"46","title":"OPTIONS"},"47":{"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":"47","title":"EXAMPLES"},"48":{"body":"The bayard probe CLI probes the server.","breadcrumbs":"Reference » bayard » bayard probe","id":"48","title":"bayard probe"},"49":{"body":"bayard probe [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 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":"52","title":"EXAMPLES"},"53":{"body":"The bayard peers CLI shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard peers","id":"53","title":"bayard peers"},"54":{"body":"bayard peers [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 Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"56","title":"OPTIONS"},"57":{"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":"57","title":"EXAMPLES"},"58":{"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":"58","title":"bayard metrics"},"59":{"body":"bayard metrics [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, --server IP:PORT Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"61","title":"OPTIONS"},"62":{"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":"62","title":"EXAMPLES"},"63":{"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":"63","title":"bayard leave"},"64":{"body":"bayard leave [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"64","title":"USAGE"},"65":{"body":"-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 Node ID to be removed from the cluster that specified server is joining. [default: 1]","breadcrumbs":"Reference » bayard » OPTIONS","id":"66","title":"OPTIONS"},"67":{"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":"67","title":"EXAMPLES"},"68":{"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":"68","title":"bayard put"},"69":{"body":"bayard put [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":"-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":"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. 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":"71","title":"OPTIONS"},"72":{"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":"72","title":"EXAMPLES"},"73":{"body":"The bayard get CLI gets a document with the specified ID.","breadcrumbs":"Reference » bayard » bayard get","id":"73","title":"bayard get"},"74":{"body":"bayard get [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]\n-i, --id A unique value that identifies the document in the index.","breadcrumbs":"Reference » bayard » OPTIONS","id":"76","title":"OPTIONS"},"77":{"body":"To get a document with default options: $ ./bin/bayard get --id=1","breadcrumbs":"Reference » bayard » EXAMPLES","id":"77","title":"EXAMPLES"},"78":{"body":"The bayard commit CLI commits updates made to the index.","breadcrumbs":"Reference » bayard » bayard commit","id":"78","title":"bayard commit"},"79":{"body":"bayard commit [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 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":"82","title":"EXAMPLES"},"83":{"body":"The bayard rollback CLI rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » bayard » bayard rollback","id":"83","title":"bayard rollback"},"84":{"body":"bayard rollback [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 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":"87","title":"EXAMPLES"},"88":{"body":"The bayard merge CLI merges fragmented segments in the index.","breadcrumbs":"Reference » bayard » bayard merge","id":"88","title":"bayard merge"},"89":{"body":"bayard merge [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":"-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]","breadcrumbs":"Reference » bayard » OPTIONS","id":"91","title":"OPTIONS"},"92":{"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":"92","title":"EXAMPLES"},"93":{"body":"The bayard search CLI searches documents from the index.","breadcrumbs":"Reference » bayard » bayard search","id":"93","title":"bayard search"},"94":{"body":"bayard search [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"94","title":"USAGE"},"95":{"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":"95","title":"FLAGS"},"96":{"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":"96","title":"OPTIONS"},"97":{"body":" Query string to search the index.","breadcrumbs":"Reference » bayard » ARGS","id":"97","title":"ARGS"},"98":{"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":"98","title":"EXAMPLES"},"99":{"body":"The bayard schema CLI shows the index schema that the server applied.","breadcrumbs":"Reference » bayard » bayard schema","id":"99","title":"bayard schema"}},"length":156,"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":{"113":{"tf":1.0},"46":{"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":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"142":{"tf":1.0},"33":{"tf":1.0},"9":{"tf":2.449489742783178},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}},"1":{"5":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"9":{"df":0,"docs":{},"t":{"0":{"1":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"12":{"tf":1.0},"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":{}},"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},"46":{"tf":1.0},"66":{"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":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":6,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"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":{"4":{"2":{"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":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"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":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"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":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"41":{"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},"107":{"tf":1.0},"113":{"tf":2.0},"120":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.0},"51":{"tf":1.0},"53":{"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},"96":{"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":{"142":{"tf":1.0},"22":{"tf":1.0},"96":{"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":16,"docs":{"115":{"tf":1.0},"116":{"tf":3.605551275463989},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"37":{"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":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"153":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"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":{"107":{"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},"34":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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":42,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"tf":1.4142135623730951},"94":{"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":{"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"70":{"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":28,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"114":{"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},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"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.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"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":{"130":{"tf":1.4142135623730951},"139":{"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":{"129":{"tf":1.0},"138":{"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":{"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"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":{"107":{"tf":1.0},"95":{"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":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"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":28,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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},"9":{"tf":1.0},"91":{"tf":1.0},"96":{"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},"35":{"tf":1.0},"36":{"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":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"46":{"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}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"95":{"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":{"107":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":2,"docs":{"46":{"tf":1.0},"95":{"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":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"109":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"142":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"46":{"tf":3.4641016151377544},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"139":{"tf":2.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"28":{"tf":1.0},"41":{"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":{"116":{"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":{"46":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"47":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"95":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}},"df":37,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"31":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"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":3,"docs":{"0":{"tf":1.0},"30":{"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":{"46":{"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":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"24":{"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},"92":{"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":{"139":{"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":{"130":{"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":{"130":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"142":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"df":4,"docs":{"14":{"tf":2.0},"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"71":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"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":14,"docs":{"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.6457513110645907},"20":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"96":{"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},"47":{"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},"72":{"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},"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"142":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"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.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"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":20,"docs":{"10":{"tf":1.0},"108":{"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},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"71":{"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":{"150":{"tf":1.0},"41":{"tf":1.0},"88":{"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":{"98":{"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":7,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":2.0},"116":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"41":{"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},"131":{"tf":1.0},"41":{"tf":1.0},"73":{"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":{"41":{"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":3,"docs":{"0":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"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},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"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},"95":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"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},"95":{"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":{"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":2.0},"26":{"tf":2.23606797749979},"46":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"146":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"139":{"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":{"152":{"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":{"149":{"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":{"155":{"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":{"143":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"143":{"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":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"125":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"122":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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":{"34":{"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},"47":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"67":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.6457513110645907},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"127":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"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":{"148":{"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":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"32":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}}}}}},"df":2,"docs":{"113":{"tf":1.0},"46":{"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":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"41":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"66":{"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},"129":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"46":{"tf":2.0},"47":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"df":1,"docs":{"96":{"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},"41":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"142":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"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},"46":{"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},"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"107":{"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":9,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"150":{"tf":1.7320508075688772},"152":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"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":{"41":{"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":8,"docs":{"116":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"41":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"33":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"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":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"10":{"tf":2.8284271247461903},"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"36":{"tf":1.0},"46":{"tf":2.449489742783178},"96":{"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":{"126":{"tf":1.0},"41":{"tf":1.0},"68":{"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":{"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"66":{"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":{"113":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"46":{"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},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"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},"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},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"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},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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":{"126":{"tf":1.0},"128":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0}}}}},"df":3,"docs":{"113":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.0},"27":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"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}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"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},"47":{"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":3,"docs":{"113":{"tf":2.23606797749979},"26":{"tf":1.0},"46":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"142":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"96":{"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":{"142":{"tf":1.0},"96":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"41":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":2.0},"67":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"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":{"35":{"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":11,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"41":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"94":{"tf":1.0},"97":{"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},"46":{"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":2,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"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":{"37":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"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":{"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"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":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"116":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"41":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.0},"36":{"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":8,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"41":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"103":{"tf":2.0},"116":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"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},"107":{"tf":1.0},"113":{"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},"96":{"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":14,"docs":{"0":{"tf":1.4142135623730951},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":9,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"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":{"150":{"tf":1.0},"152":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"46":{"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},"96":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"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":{"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"153":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"38":{"tf":1.0},"41":{"tf":3.0},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"2":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"3":{"df":2,"docs":{"114":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"103":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"92":{"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":{}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"41":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"46":{"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":27,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":2.0},"20":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":2.8284271247461903},"46":{"tf":3.3166247903554},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"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":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"20":{"tf":1.0},"97":{"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":{"41":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"41":{"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":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"29":{"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":{"98":{"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":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"142":{"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},"130":{"tf":1.4142135623730951},"139":{"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":{"46":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"71":{"tf":1.0},"76":{"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":{"46":{"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":{"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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},"34":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"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},"94":{"tf":1.0}}}},"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"116":{"tf":1.0},"142":{"tf":2.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":2.6457513110645907},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}},"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"71":{"tf":1.0},"76":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0},"42":{"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},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"113":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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":{"46":{"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":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"113":{"tf":1.0},"46":{"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":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"142":{"tf":1.0},"33":{"tf":1.0},"9":{"tf":2.449489742783178},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}},"1":{"5":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"9":{"df":0,"docs":{},"t":{"0":{"1":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"12":{"tf":1.0},"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":{}},"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},"46":{"tf":1.0},"66":{"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":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":6,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"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":{"4":{"2":{"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":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"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":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"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":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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},"107":{"tf":1.0},"113":{"tf":2.0},"120":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.0},"51":{"tf":1.0},"53":{"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},"96":{"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":{"142":{"tf":1.0},"22":{"tf":1.0},"96":{"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":44,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":3.7416573867739413},"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":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.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},"150":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"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":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"153":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"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":{"107":{"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},"34":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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":86,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"41":{"tf":3.872983346207417},"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":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"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":{"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"70":{"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":28,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"114":{"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},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"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.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"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":{"130":{"tf":1.4142135623730951},"139":{"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":{"129":{"tf":1.4142135623730951},"138":{"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":{"13":{"tf":2.0},"130":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":2.0},"70":{"tf":1.4142135623730951},"72":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"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":{"107":{"tf":1.0},"95":{"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":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"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":28,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":2.6457513110645907},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"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},"35":{"tf":1.0},"36":{"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":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":2.0},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"46":{"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}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"95":{"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":{"107":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":2,"docs":{"46":{"tf":1.0},"95":{"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":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"109":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"142":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"46":{"tf":3.4641016151377544},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.4142135623730951},"139":{"tf":2.0},"15":{"tf":2.0},"16":{"tf":2.0},"28":{"tf":1.0},"41":{"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":{"116":{"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":{"46":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"47":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"95":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}},"df":37,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"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":3,"docs":{"0":{"tf":1.0},"30":{"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":{"46":{"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":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"24":{"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},"92":{"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":{"139":{"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":{"130":{"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":{"130":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"142":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"df":4,"docs":{"14":{"tf":2.0},"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"71":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"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":14,"docs":{"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.8284271247461903},"20":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"96":{"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},"47":{"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},"72":{"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},"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"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.7320508075688772},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"95":{"tf":2.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":20,"docs":{"10":{"tf":1.0},"108":{"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},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"71":{"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":{"150":{"tf":1.0},"41":{"tf":1.0},"88":{"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":{"98":{"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":7,"docs":{"110":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":2.0},"116":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"41":{"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},"131":{"tf":1.0},"41":{"tf":1.0},"73":{"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":{"41":{"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":3,"docs":{"0":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"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},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"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},"95":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"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},"95":{"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":{"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":2.0},"26":{"tf":2.23606797749979},"46":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"146":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"139":{"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":{"152":{"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":{"149":{"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":{"155":{"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":{"143":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"143":{"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":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"125":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"122":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"29":{"tf":1.7320508075688772},"41":{"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":{"34":{"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},"47":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"67":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.6457513110645907},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"127":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"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":{"148":{"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":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"32":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}}}}}},"df":2,"docs":{"113":{"tf":1.0},"46":{"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":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":2.0},"41":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"66":{"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},"129":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"46":{"tf":2.0},"47":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"df":1,"docs":{"96":{"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},"41":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"142":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"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},"46":{"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},"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"107":{"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":9,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"150":{"tf":2.0},"152":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0},"92":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"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":{"41":{"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":8,"docs":{"116":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"125":{"tf":1.0},"41":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"33":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"30":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"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":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"10":{"tf":2.8284271247461903},"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"36":{"tf":1.0},"46":{"tf":2.449489742783178},"96":{"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":{"126":{"tf":1.0},"41":{"tf":1.0},"68":{"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":{"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"66":{"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":{"113":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.7320508075688772},"46":{"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},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"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},"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},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"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},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.7320508075688772},"41":{"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":{"126":{"tf":1.0},"128":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"df":3,"docs":{"113":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"116":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"27":{"tf":2.0},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"57":{"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}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"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},"47":{"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":3,"docs":{"113":{"tf":2.23606797749979},"26":{"tf":1.0},"46":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"142":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"96":{"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":{"142":{"tf":1.0},"96":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"41":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":2.0},"67":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"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":{"35":{"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":11,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"41":{"tf":1.7320508075688772},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":2.0},"22":{"tf":1.0},"94":{"tf":1.0},"97":{"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},"46":{"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":2,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"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":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},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"37":{"tf":1.4142135623730951},"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},"41":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"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":{"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"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":4,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"116":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"41":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"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":8,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"103":{"tf":2.0},"116":{"tf":1.0},"153":{"tf":2.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.0},"99":{"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},"107":{"tf":1.0},"113":{"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},"96":{"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":14,"docs":{"0":{"tf":1.4142135623730951},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":9,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"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":{"150":{"tf":1.0},"152":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"46":{"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},"96":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"47":{"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":{"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"153":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.449489742783178},"38":{"tf":1.0},"41":{"tf":3.0},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"2":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"3":{"df":2,"docs":{"114":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"103":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"92":{"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":{}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"41":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"46":{"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":27,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":2.0},"20":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":2.8284271247461903},"46":{"tf":3.3166247903554},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"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":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"20":{"tf":1.0},"97":{"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":{"41":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"41":{"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":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"29":{"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":{"98":{"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":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"142":{"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},"130":{"tf":1.4142135623730951},"139":{"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":{"46":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"71":{"tf":1.0},"76":{"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":{"46":{"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":{"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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},"34":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"111":{"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},"94":{"tf":1.4142135623730951}}}},"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"116":{"tf":1.0},"142":{"tf":2.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"46":{"tf":2.6457513110645907},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}},"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"71":{"tf":1.0},"76":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0},"42":{"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},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"113":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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":{"46":{"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":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":14,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":17,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"110":{"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},"93":{"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":{"129":{"tf":1.0},"138":{"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":{"144":{"tf":1.0},"78":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"135":{"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":{"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"24":{"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},"92":{"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},"106":{"tf":1.0},"112":{"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},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"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":2,"docs":{"110":{"tf":1.0},"30":{"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}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"29":{"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":{}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"150":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"58":{"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},"107":{"tf":1.0},"113":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"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},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"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":{"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"31":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"10":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"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":{"41":{"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},"105":{"tf":1.0},"111":{"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},"94":{"tf":1.0}}}},"df":2,"docs":{"30":{"tf":1.0},"33":{"tf":1.0}}}}}}},"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","accessing_over_http.html#accessing-over-the-http","accessing_over_http.html#using-gateway","accessing_over_http.html#rest-api","scheduling_jobs.html#scheduling-jobs","scheduling_jobs.html#using-job-scheduler","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.html#api-list","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":14,"breadcrumbs":3,"title":1},"103":{"body":14,"breadcrumbs":3,"title":1},"104":{"body":6,"breadcrumbs":4,"title":2},"105":{"body":3,"breadcrumbs":3,"title":1},"106":{"body":10,"breadcrumbs":3,"title":1},"107":{"body":44,"breadcrumbs":3,"title":1},"108":{"body":12,"breadcrumbs":4,"title":2},"109":{"body":17,"breadcrumbs":3,"title":1},"11":{"body":12,"breadcrumbs":2,"title":2},"110":{"body":9,"breadcrumbs":4,"title":2},"111":{"body":3,"breadcrumbs":3,"title":1},"112":{"body":10,"breadcrumbs":3,"title":1},"113":{"body":46,"breadcrumbs":3,"title":1},"114":{"body":12,"breadcrumbs":3,"title":1},"115":{"body":0,"breadcrumbs":3,"title":2},"116":{"body":37,"breadcrumbs":3,"title":2},"117":{"body":4,"breadcrumbs":4,"title":2},"118":{"body":1,"breadcrumbs":3,"title":1},"119":{"body":5,"breadcrumbs":3,"title":1},"12":{"body":42,"breadcrumbs":2,"title":2},"120":{"body":9,"breadcrumbs":4,"title":2},"121":{"body":1,"breadcrumbs":3,"title":1},"122":{"body":6,"breadcrumbs":3,"title":1},"123":{"body":12,"breadcrumbs":4,"title":2},"124":{"body":1,"breadcrumbs":3,"title":1},"125":{"body":5,"breadcrumbs":3,"title":1},"126":{"body":13,"breadcrumbs":4,"title":2},"127":{"body":4,"breadcrumbs":3,"title":1},"128":{"body":13,"breadcrumbs":4,"title":2},"129":{"body":6,"breadcrumbs":4,"title":2},"13":{"body":13,"breadcrumbs":3,"title":3},"130":{"body":27,"breadcrumbs":3,"title":1},"131":{"body":5,"breadcrumbs":3,"title":1},"132":{"body":1,"breadcrumbs":3,"title":1},"133":{"body":6,"breadcrumbs":4,"title":2},"134":{"body":4,"breadcrumbs":3,"title":1},"135":{"body":6,"breadcrumbs":4,"title":2},"136":{"body":4,"breadcrumbs":3,"title":1},"137":{"body":6,"breadcrumbs":4,"title":2},"138":{"body":5,"breadcrumbs":4,"title":2},"139":{"body":20,"breadcrumbs":3,"title":1},"14":{"body":95,"breadcrumbs":2,"title":2},"140":{"body":5,"breadcrumbs":4,"title":2},"141":{"body":1,"breadcrumbs":3,"title":1},"142":{"body":67,"breadcrumbs":4,"title":2},"143":{"body":15,"breadcrumbs":3,"title":1},"144":{"body":6,"breadcrumbs":4,"title":2},"145":{"body":1,"breadcrumbs":3,"title":1},"146":{"body":5,"breadcrumbs":3,"title":1},"147":{"body":10,"breadcrumbs":4,"title":2},"148":{"body":1,"breadcrumbs":3,"title":1},"149":{"body":5,"breadcrumbs":3,"title":1},"15":{"body":11,"breadcrumbs":2,"title":2},"150":{"body":6,"breadcrumbs":4,"title":2},"151":{"body":1,"breadcrumbs":3,"title":1},"152":{"body":6,"breadcrumbs":3,"title":1},"153":{"body":7,"breadcrumbs":4,"title":2},"154":{"body":1,"breadcrumbs":3,"title":1},"155":{"body":6,"breadcrumbs":3,"title":1},"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":90,"breadcrumbs":6,"title":6},"27":{"body":24,"breadcrumbs":2,"title":2},"28":{"body":33,"breadcrumbs":3,"title":3},"29":{"body":16,"breadcrumbs":3,"title":3},"3":{"body":1,"breadcrumbs":3,"title":3},"30":{"body":20,"breadcrumbs":2,"title":2},"31":{"body":4,"breadcrumbs":2,"title":2},"32":{"body":8,"breadcrumbs":2,"title":2},"33":{"body":30,"breadcrumbs":3,"title":3},"34":{"body":9,"breadcrumbs":2,"title":2},"35":{"body":9,"breadcrumbs":3,"title":3},"36":{"body":15,"breadcrumbs":3,"title":3},"37":{"body":2,"breadcrumbs":1,"title":1},"38":{"body":6,"breadcrumbs":2,"title":1},"39":{"body":2,"breadcrumbs":2,"title":1},"4":{"body":2,"breadcrumbs":1,"title":1},"40":{"body":10,"breadcrumbs":2,"title":1},"41":{"body":145,"breadcrumbs":2,"title":1},"42":{"body":5,"breadcrumbs":2,"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":129,"breadcrumbs":3,"title":1},"47":{"body":18,"breadcrumbs":3,"title":1},"48":{"body":5,"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":12,"breadcrumbs":3,"title":1},"53":{"body":10,"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":14,"breadcrumbs":3,"title":1},"58":{"body":13,"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":9,"breadcrumbs":3,"title":1},"62":{"body":12,"breadcrumbs":3,"title":1},"63":{"body":11,"breadcrumbs":4,"title":2},"64":{"body":3,"breadcrumbs":3,"title":1},"65":{"body":10,"breadcrumbs":3,"title":1},"66":{"body":25,"breadcrumbs":3,"title":1},"67":{"body":13,"breadcrumbs":3,"title":1},"68":{"body":14,"breadcrumbs":4,"title":2},"69":{"body":5,"breadcrumbs":3,"title":1},"7":{"body":15,"breadcrumbs":1,"title":1},"70":{"body":18,"breadcrumbs":3,"title":1},"71":{"body":37,"breadcrumbs":3,"title":1},"72":{"body":13,"breadcrumbs":3,"title":1},"73":{"body":6,"breadcrumbs":3,"title":1},"74":{"body":3,"breadcrumbs":3,"title":1},"75":{"body":10,"breadcrumbs":3,"title":1},"76":{"body":21,"breadcrumbs":3,"title":1},"77":{"body":5,"breadcrumbs":3,"title":1},"78":{"body":7,"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":11,"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":12,"breadcrumbs":3,"title":1},"88":{"body":7,"breadcrumbs":4,"title":2},"89":{"body":3,"breadcrumbs":3,"title":1},"9":{"body":126,"breadcrumbs":6,"title":6},"90":{"body":10,"breadcrumbs":3,"title":1},"91":{"body":14,"breadcrumbs":3,"title":1},"92":{"body":14,"breadcrumbs":3,"title":1},"93":{"body":6,"breadcrumbs":4,"title":2},"94":{"body":4,"breadcrumbs":3,"title":1},"95":{"body":32,"breadcrumbs":3,"title":1},"96":{"body":56,"breadcrumbs":3,"title":1},"97":{"body":5,"breadcrumbs":3,"title":1},"98":{"body":18,"breadcrumbs":3,"title":1},"99":{"body":8,"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 schema [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]","breadcrumbs":"Reference » bayard » OPTIONS","id":"102","title":"OPTIONS"},"103":{"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":"103","title":"EXAMPLES"},"104":{"body":"The bayard schedule CLI starts the job scheduler.","breadcrumbs":"Reference » bayard » bayard schedule","id":"104","title":"bayard schedule"},"105":{"body":"bayard schedule [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"105","title":"USAGE"},"106":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"106","title":"FLAGS"},"107":{"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":"107","title":"OPTIONS"},"108":{"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":"108","title":"SCHEDULE FORMAT"},"109":{"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":"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 bayard gateway CLI starts a gateway for access the server over HTTP.","breadcrumbs":"Reference » bayard » bayard gateway","id":"110","title":"bayard gateway"},"111":{"body":"bayard gateway [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"111","title":"USAGE"},"112":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"112","title":"FLAGS"},"113":{"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":"113","title":"OPTIONS"},"114":{"body":"To start gateway with default options: $ ./bin/bayard gateway To start gateway with options: $ ./bin/bayard gateway --servers=127.0.0.1:5001,127.0.0.1:5002,127.0.0.1:5003","breadcrumbs":"Reference » bayard » EXAMPLES","id":"114","title":"EXAMPLES"},"115":{"body":"","breadcrumbs":"Reference » REST API","id":"115","title":"REST API"},"116":{"body":"Probe API Peers API Metrics API Put API Get API Delete API Search API Commit API Rollback API Merge API Schema API 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 » API list","id":"116","title":"API list"},"117":{"body":"Probe API probes the server.","breadcrumbs":"Reference » APIs » Probe API","id":"117","title":"Probe API"},"118":{"body":"GET /probe","breadcrumbs":"Reference » APIs » Request","id":"118","title":"Request"},"119":{"body":"To probe a server: $ curl -X GET 'http://localhost:8000/probe'","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: { \"_id\": [ \"1\" ], \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1152 ], \"timestamp\": [ \"2019-12-19T01:41:00+00:00\" ], \"url\": [ \"https://github.com/bayard-search/bayard\" ]\n}","breadcrumbs":"Getting document","id":"12","title":"Getting document"},"120":{"body":"Peers API shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » APIs » Peers API","id":"120","title":"Peers API"},"121":{"body":"GET /peers","breadcrumbs":"Reference » APIs » Request","id":"121","title":"Request"},"122":{"body":"To show peers of the cluster: $ curl -X GET 'http://localhost:8000/peers'","breadcrumbs":"Reference » APIs » Examples","id":"122","title":"Examples"},"123":{"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":"123","title":"Metrics API"},"124":{"body":"GET /metrics","breadcrumbs":"Reference » APIs » Request","id":"124","title":"Request"},"125":{"body":"To show metrics: $ curl -X GET 'http://localhost:8000/metrics'","breadcrumbs":"Reference » APIs » Examples","id":"125","title":"Examples"},"126":{"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":"126","title":"Put API"},"127":{"body":"PUT /index/docs/\nPUT /index/docs","breadcrumbs":"Reference » APIs » Request","id":"127","title":"Request"},"128":{"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":"128","title":"Path parameters"},"129":{"body":" Document(s) expressed in JSON or JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"129","title":"Request body"},"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":"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":"130","title":"Example"},"131":{"body":"Get API gets a document with the specified ID.","breadcrumbs":"Reference » APIs » Get API","id":"131","title":"Get API"},"132":{"body":"GET /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"132","title":"Request"},"133":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"133","title":"Path parameters"},"134":{"body":"To get a document: $ curl -X GET 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"134","title":"Examples"},"135":{"body":"Delete API deletes a document with the specified ID.","breadcrumbs":"Reference » APIs » Delete API","id":"135","title":"Delete API"},"136":{"body":"DELETE /index/docs/\nDELETE /index/docs","breadcrumbs":"Reference » APIs » Request","id":"136","title":"Request"},"137":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"137","title":"Path parameters"},"138":{"body":" Document(s) expressed in JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"138","title":"Request body"},"139":{"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":"139","title":"Examples"},"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\": { \"_id\": [ \"8\" ], \"category\": [ \"/category/search/library\", \"/language/rust\" ], \"description\": [ \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\" ], \"name\": [ \"Tantivy\" ], \"popularity\": [ 3142 ], \"timestamp\": [ \"2019-12-19T01:07:00+00:00\" ], \"url\": [ \"https://github.com/tantivy-search/tantivy\" ] }, \"score\": 1.5722498 }, { \"fields\": { \"_id\": [ \"1\" ], \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1152 ], \"timestamp\": [ \"2019-12-19T01:41:00+00:00\" ], \"url\": [ \"https://github.com/bayard-search/bayard\" ] }, \"score\": 1.5331805 } ], \"facet\": { \"category\": { \"/language/rust\": 2, \"/category/search/library\": 1, \"/category/search/server\": 1 } }\n}","breadcrumbs":"Searching documents","id":"14","title":"Searching documents"},"140":{"body":"Search API searches documents from the index.","breadcrumbs":"Reference » APIs » Search API","id":"140","title":"Search API"},"141":{"body":"GET /index/search","breadcrumbs":"Reference » APIs » Request","id":"141","title":"Request"},"142":{"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":"142","title":"Query parameters"},"143":{"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":"143","title":"Example"},"144":{"body":"Commit API commits updates made to the index.","breadcrumbs":"Reference » APIs » Commit API","id":"144","title":"Commit API"},"145":{"body":"GET /index/commit","breadcrumbs":"Reference » APIs » Request","id":"145","title":"Request"},"146":{"body":"To commit an index: $ curl -X GET 'http://localhost:8000/index/commit'","breadcrumbs":"Reference » APIs » Example","id":"146","title":"Example"},"147":{"body":"Rollback API rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » APIs » Rollback API","id":"147","title":"Rollback API"},"148":{"body":"GET /index/rollback","breadcrumbs":"Reference » APIs » Request","id":"148","title":"Request"},"149":{"body":"To rollback an index: $ curl -X GET 'http://localhost:8000/index/rollback'","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"},"150":{"body":"Merge API merges fragmented segments in the index.","breadcrumbs":"Reference » APIs » Merge API","id":"150","title":"Merge API"},"151":{"body":"GET /index/merge","breadcrumbs":"Reference » APIs » Request","id":"151","title":"Request"},"152":{"body":"To merge segments in the index: $ curl -X GET 'http://localhost:8000/index/merge'","breadcrumbs":"Reference » APIs » Examples","id":"152","title":"Examples"},"153":{"body":"Schema API shows the index schema that the server applied.","breadcrumbs":"Reference » APIs » Schema API","id":"153","title":"Schema API"},"154":{"body":"GET /index/schema","breadcrumbs":"Reference » APIs » Request","id":"154","title":"Request"},"155":{"body":"To show the index schema: $ curl -X GET 'http://localhost:8000/index/schema'","breadcrumbs":"Reference » APIs » Examples","id":"155","title":"Examples"},"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 $ ./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 $ ./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 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":"Bayard supports gRPC connections, but some users may want to use the traditional RESTful API over HTTP. Gateways are useful in such cases.","breadcrumbs":"Accessing over the HTTP","id":"29","title":"Accessing over the HTTP"},"3":{"body":"https://hub.docker.com/r/bayardsearch/bayard","breadcrumbs":"Docker container repository","id":"3","title":"Docker container repository"},"30":{"body":"Starting a Gateway is easy. $ ./bin/bayard gateway If you want to start a Gateway that connects to Bayard running in cluster mode, we recommend that you specify a flag as follows: $ ./bin/bayard gateway --servers=127.0.0.1:5001,127.0.0.1:5002,127.0.0.1:5003","breadcrumbs":"Using Gateway","id":"30","title":"Using Gateway"},"31":{"body":"See following documents: APIs","breadcrumbs":"REST API","id":"31","title":"REST API"},"32":{"body":"You can use the Job scheduler to execute periodic commits and index merges.","breadcrumbs":"Scheduling jobs","id":"32","title":"Scheduling jobs"},"33":{"body":"Start the job scheduler as follows: $ ./bin/bayard schedule To specify job scheduler settings: $ ./bin/bayard schedule --commit=\"0/10 * * * * * *\" --merge=\"0 0 2 * * * *\" The format of the settings is very similar to the crontab. sec min hour day-of-month month day-of-week year\n* * * * * * *","breadcrumbs":"Using Job scheduler","id":"33","title":"Using Job scheduler"},"34":{"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":"34","title":"Running on Docker"},"35":{"body":"You can pull the Docker container image with the following command: $ docker pull bayardsearch/bayard:latest","breadcrumbs":"Pulling Docker container","id":"35","title":"Pulling Docker container"},"36":{"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":"36","title":"Running Docker container"},"37":{"body":"bayard APIs","breadcrumbs":"Reference","id":"37","title":"Reference"},"38":{"body":"The bayard CLI manages server, cluster and index.","breadcrumbs":"Reference » bayard","id":"38","title":"bayard"},"39":{"body":"bayard ","breadcrumbs":"Reference » 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 » FLAGS","id":"40","title":"FLAGS"},"41":{"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":"41","title":"SUBCOMMANDS"},"42":{"body":"To print version information: $ ./bin/bayard -v","breadcrumbs":"Reference » EXAMPLES","id":"42","title":"EXAMPLES"},"43":{"body":"The bayard serve CLI starts the server.","breadcrumbs":"Reference » bayard » bayard serve","id":"43","title":"bayard serve"},"44":{"body":"bayard serve [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":"-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-t, --indexer-threads Number of indexer threads. If not specified, number of CPU cores - 1 will be used. [default: 7] -m, --indexer-memory-size Total memory size (in bytes) used by the indexer. It will be split for the different thread. If not specified, use the default. [default: 1000000000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"46","title":"OPTIONS"},"47":{"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","breadcrumbs":"Reference » bayard » EXAMPLES","id":"47","title":"EXAMPLES"},"48":{"body":"The bayard probe CLI probes the server.","breadcrumbs":"Reference » bayard » bayard probe","id":"48","title":"bayard probe"},"49":{"body":"bayard probe [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 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":"52","title":"EXAMPLES"},"53":{"body":"The bayard peers CLI shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard peers","id":"53","title":"bayard peers"},"54":{"body":"bayard peers [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 Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"56","title":"OPTIONS"},"57":{"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":"57","title":"EXAMPLES"},"58":{"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":"58","title":"bayard metrics"},"59":{"body":"bayard metrics [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, --server IP:PORT Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"61","title":"OPTIONS"},"62":{"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":"62","title":"EXAMPLES"},"63":{"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":"63","title":"bayard leave"},"64":{"body":"bayard leave [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"64","title":"USAGE"},"65":{"body":"-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 Node ID to be removed from the cluster that specified server is joining. [default: 1]","breadcrumbs":"Reference » bayard » OPTIONS","id":"66","title":"OPTIONS"},"67":{"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":"67","title":"EXAMPLES"},"68":{"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":"68","title":"bayard put"},"69":{"body":"bayard put [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":"-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":"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. 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":"71","title":"OPTIONS"},"72":{"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":"72","title":"EXAMPLES"},"73":{"body":"The bayard get CLI gets a document with the specified ID.","breadcrumbs":"Reference » bayard » bayard get","id":"73","title":"bayard get"},"74":{"body":"bayard get [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]\n-i, --id A unique value that identifies the document in the index.","breadcrumbs":"Reference » bayard » OPTIONS","id":"76","title":"OPTIONS"},"77":{"body":"To get a document with default options: $ ./bin/bayard get --id=1","breadcrumbs":"Reference » bayard » EXAMPLES","id":"77","title":"EXAMPLES"},"78":{"body":"The bayard commit CLI commits updates made to the index.","breadcrumbs":"Reference » bayard » bayard commit","id":"78","title":"bayard commit"},"79":{"body":"bayard commit [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 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":"82","title":"EXAMPLES"},"83":{"body":"The bayard rollback CLI rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » bayard » bayard rollback","id":"83","title":"bayard rollback"},"84":{"body":"bayard rollback [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 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":"87","title":"EXAMPLES"},"88":{"body":"The bayard merge CLI merges fragmented segments in the index.","breadcrumbs":"Reference » bayard » bayard merge","id":"88","title":"bayard merge"},"89":{"body":"bayard merge [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":"-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]","breadcrumbs":"Reference » bayard » OPTIONS","id":"91","title":"OPTIONS"},"92":{"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":"92","title":"EXAMPLES"},"93":{"body":"The bayard search CLI searches documents from the index.","breadcrumbs":"Reference » bayard » bayard search","id":"93","title":"bayard search"},"94":{"body":"bayard search [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"94","title":"USAGE"},"95":{"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":"95","title":"FLAGS"},"96":{"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":"96","title":"OPTIONS"},"97":{"body":" Query string to search the index.","breadcrumbs":"Reference » bayard » ARGS","id":"97","title":"ARGS"},"98":{"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":"98","title":"EXAMPLES"},"99":{"body":"The bayard schema CLI shows the index schema that the server applied.","breadcrumbs":"Reference » bayard » bayard schema","id":"99","title":"bayard schema"}},"length":156,"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":{"113":{"tf":1.0},"46":{"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":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"142":{"tf":1.0},"33":{"tf":1.0},"9":{"tf":2.449489742783178},"96":{"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":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":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":{"142":{"tf":1.0},"96":{"tf":1.0}}},"1":{"5":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"9":{"df":0,"docs":{},"t":{"0":{"1":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"12":{"tf":1.0},"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":{}},"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},"46":{"tf":1.4142135623730951},"66":{"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":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":6,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"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":{"4":{"2":{"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":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"20":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"46":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"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":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"41":{"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},"107":{"tf":1.0},"113":{"tf":2.0},"120":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.0},"51":{"tf":1.0},"53":{"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},"96":{"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":{"142":{"tf":1.0},"22":{"tf":1.0},"96":{"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":16,"docs":{"115":{"tf":1.0},"116":{"tf":3.605551275463989},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"37":{"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":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"153":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"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":{"107":{"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},"34":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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":42,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"tf":1.4142135623730951},"94":{"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":{"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"70":{"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":28,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"114":{"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},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"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.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"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":{"130":{"tf":1.4142135623730951},"139":{"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":{"129":{"tf":1.0},"138":{"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":{"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}},"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":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"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":{"107":{"tf":1.0},"95":{"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":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"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":28,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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},"9":{"tf":1.0},"91":{"tf":1.0},"96":{"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},"35":{"tf":1.0},"36":{"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":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"46":{"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}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"46":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":2,"docs":{"46":{"tf":1.0},"95":{"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":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"109":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"142":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"46":{"tf":3.605551275463989},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"139":{"tf":2.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"28":{"tf":1.0},"41":{"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":{"116":{"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":2,"docs":{"26":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}}},"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":{"46":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"47":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"95":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}},"df":37,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"31":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"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":3,"docs":{"0":{"tf":1.0},"30":{"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":{"46":{"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":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"24":{"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},"92":{"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":{"139":{"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":{"130":{"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":{"130":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"142":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"df":4,"docs":{"14":{"tf":2.0},"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"71":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"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":12,"docs":{"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.6457513110645907},"20":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"96":{"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},"47":{"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},"72":{"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},"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"142":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"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.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"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":20,"docs":{"10":{"tf":1.0},"108":{"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},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"71":{"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":{"150":{"tf":1.0},"41":{"tf":1.0},"88":{"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":{"98":{"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":7,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":2.0},"116":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"41":{"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},"131":{"tf":1.0},"41":{"tf":1.0},"73":{"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":{"41":{"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":3,"docs":{"0":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"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},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"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},"95":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"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},"95":{"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":{"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":2.0},"26":{"tf":2.23606797749979},"46":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"146":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"139":{"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":{"152":{"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":{"149":{"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":{"155":{"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":{"143":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"143":{"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":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"125":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"122":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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":{"34":{"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},"47":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"67":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"127":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"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":{"148":{"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":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"32":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"71":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}}}}}},"df":2,"docs":{"113":{"tf":1.0},"46":{"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":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"41":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"66":{"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},"129":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"df":1,"docs":{"96":{"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},"41":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"142":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"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},"46":{"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},"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"107":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"150":{"tf":1.7320508075688772},"152":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"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":{"41":{"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":8,"docs":{"116":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"41":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"33":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"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":11,"docs":{"10":{"tf":2.8284271247461903},"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"36":{"tf":1.0},"46":{"tf":1.4142135623730951},"96":{"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":{"126":{"tf":1.0},"41":{"tf":1.0},"68":{"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":{"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"66":{"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":{"113":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"46":{"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},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"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},"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},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"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},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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":{"126":{"tf":1.0},"128":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0}}}}},"df":3,"docs":{"113":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.0},"27":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"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}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"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},"47":{"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":3,"docs":{"113":{"tf":2.23606797749979},"26":{"tf":1.0},"46":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"142":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"96":{"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":{"142":{"tf":1.0},"96":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"41":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":2.0},"67":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"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":{"35":{"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":11,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"41":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"94":{"tf":1.0},"97":{"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},"46":{"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":2,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"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":{"37":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"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":{"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"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":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"116":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"41":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.0},"36":{"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":8,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"41":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"103":{"tf":2.0},"116":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"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},"107":{"tf":1.0},"113":{"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},"96":{"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":14,"docs":{"0":{"tf":1.4142135623730951},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":9,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"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":{"150":{"tf":1.0},"152":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"46":{"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},"96":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"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":{"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"153":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"38":{"tf":1.0},"41":{"tf":3.0},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"2":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"3":{"df":2,"docs":{"114":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"103":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"92":{"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":{}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"41":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{}}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"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":{"46":{"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":27,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":2.0},"20":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":2.8284271247461903},"46":{"tf":3.3166247903554},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"46":{"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":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"20":{"tf":1.0},"97":{"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":{"41":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"41":{"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":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"29":{"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":1,"docs":{"46":{"tf":1.0}},"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":{"98":{"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}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"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":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"142":{"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},"130":{"tf":1.4142135623730951},"139":{"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":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}},"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":{"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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},"34":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"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},"94":{"tf":1.0}}}},"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"116":{"tf":1.0},"142":{"tf":2.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":3.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},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}},"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"71":{"tf":1.0},"76":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0},"42":{"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},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"113":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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":{"46":{"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":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"113":{"tf":1.0},"46":{"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":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"142":{"tf":1.0},"33":{"tf":1.0},"9":{"tf":2.449489742783178},"96":{"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":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":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":{"142":{"tf":1.0},"96":{"tf":1.0}}},"1":{"5":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"9":{"df":0,"docs":{},"t":{"0":{"1":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"12":{"tf":1.0},"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":{}},"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},"46":{"tf":1.4142135623730951},"66":{"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":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":6,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"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":{"4":{"2":{"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":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"20":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"46":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"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":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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},"107":{"tf":1.0},"113":{"tf":2.0},"120":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.0},"51":{"tf":1.0},"53":{"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},"96":{"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":{"142":{"tf":1.0},"22":{"tf":1.0},"96":{"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":44,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":3.7416573867739413},"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":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.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},"150":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"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":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"153":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"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":{"107":{"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},"34":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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":86,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"41":{"tf":3.872983346207417},"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":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"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":{"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"70":{"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":28,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"114":{"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},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"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.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"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":{"130":{"tf":1.4142135623730951},"139":{"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":{"129":{"tf":1.4142135623730951},"138":{"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":{"13":{"tf":2.0},"130":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":2.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}},"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":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"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":{"107":{"tf":1.0},"95":{"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":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"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":28,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":2.6457513110645907},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"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},"35":{"tf":1.0},"36":{"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":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":2.0},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"46":{"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}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"46":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":2,"docs":{"46":{"tf":1.0},"95":{"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":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"109":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"142":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"46":{"tf":3.605551275463989},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.4142135623730951},"139":{"tf":2.0},"15":{"tf":2.0},"16":{"tf":2.0},"28":{"tf":1.0},"41":{"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":{"116":{"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":2,"docs":{"26":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}}},"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":{"46":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"47":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"95":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}},"df":37,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"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":3,"docs":{"0":{"tf":1.0},"30":{"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":{"46":{"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":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"24":{"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},"92":{"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":{"139":{"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":{"130":{"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":{"130":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"142":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"df":4,"docs":{"14":{"tf":2.0},"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"71":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"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":12,"docs":{"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.8284271247461903},"20":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"96":{"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},"47":{"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},"72":{"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},"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"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.7320508075688772},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"95":{"tf":2.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":20,"docs":{"10":{"tf":1.0},"108":{"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},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"71":{"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":{"150":{"tf":1.0},"41":{"tf":1.0},"88":{"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":{"98":{"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":7,"docs":{"110":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":2.0},"116":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"41":{"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},"131":{"tf":1.0},"41":{"tf":1.0},"73":{"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":{"41":{"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":3,"docs":{"0":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"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},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"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},"95":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"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},"95":{"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":{"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":2.0},"26":{"tf":2.23606797749979},"46":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"146":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"139":{"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":{"152":{"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":{"149":{"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":{"155":{"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":{"143":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"143":{"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":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"125":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"122":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"29":{"tf":1.7320508075688772},"41":{"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":{"34":{"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},"47":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"67":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"127":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"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":{"148":{"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":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"32":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"71":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}}}}}},"df":2,"docs":{"113":{"tf":1.0},"46":{"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":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":2.0},"41":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"66":{"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},"129":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"df":1,"docs":{"96":{"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},"41":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"142":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"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},"46":{"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},"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"107":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"150":{"tf":2.0},"152":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0},"92":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"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":{"41":{"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":8,"docs":{"116":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"125":{"tf":1.0},"41":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"33":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"30":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"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":11,"docs":{"10":{"tf":2.8284271247461903},"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"36":{"tf":1.0},"46":{"tf":1.4142135623730951},"96":{"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":{"126":{"tf":1.0},"41":{"tf":1.0},"68":{"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":{"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"66":{"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":{"113":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.7320508075688772},"46":{"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},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"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},"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},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"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},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.7320508075688772},"41":{"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":{"126":{"tf":1.0},"128":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"df":3,"docs":{"113":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"116":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"27":{"tf":2.0},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"57":{"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}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"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},"47":{"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":3,"docs":{"113":{"tf":2.23606797749979},"26":{"tf":1.0},"46":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"142":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"96":{"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":{"142":{"tf":1.0},"96":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"41":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":2.0},"67":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"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":{"35":{"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":11,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"41":{"tf":1.7320508075688772},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":2.0},"22":{"tf":1.0},"94":{"tf":1.0},"97":{"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},"46":{"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":2,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"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":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},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"37":{"tf":1.4142135623730951},"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},"41":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"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":{"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"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":4,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"116":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"41":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"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":8,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"103":{"tf":2.0},"116":{"tf":1.0},"153":{"tf":2.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"99":{"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},"107":{"tf":1.0},"113":{"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},"96":{"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":14,"docs":{"0":{"tf":1.4142135623730951},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":9,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"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":{"150":{"tf":1.0},"152":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"46":{"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},"96":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"47":{"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":{"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"153":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.449489742783178},"38":{"tf":1.0},"41":{"tf":3.0},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"2":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"3":{"df":2,"docs":{"114":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"103":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"92":{"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":{}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"41":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{}}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"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":{"46":{"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":27,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":2.0},"20":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":2.8284271247461903},"46":{"tf":3.3166247903554},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"46":{"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":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"20":{"tf":1.0},"97":{"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":{"41":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"41":{"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":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"29":{"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":1,"docs":{"46":{"tf":1.0}},"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":{"98":{"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}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"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":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"142":{"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},"130":{"tf":1.4142135623730951},"139":{"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":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}},"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":{"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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},"34":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"111":{"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},"94":{"tf":1.4142135623730951}}}},"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"116":{"tf":1.0},"142":{"tf":2.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"46":{"tf":3.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},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}},"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"71":{"tf":1.0},"76":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0},"42":{"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},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"113":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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":{"46":{"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":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":14,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":17,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"110":{"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},"93":{"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":{"129":{"tf":1.0},"138":{"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":{"144":{"tf":1.0},"78":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"135":{"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":{"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"24":{"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},"92":{"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},"106":{"tf":1.0},"112":{"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},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"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":2,"docs":{"110":{"tf":1.0},"30":{"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}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"29":{"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":{}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"150":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"58":{"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},"107":{"tf":1.0},"113":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"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},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"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":{"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"31":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"10":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"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":{"41":{"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},"105":{"tf":1.0},"111":{"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},"94":{"tf":1.0}}}},"df":2,"docs":{"30":{"tf":1.0},"33":{"tf":1.0}}}}}}},"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 64be14e..5ca04e8 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#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","accessing_over_http.html#accessing-over-the-http","accessing_over_http.html#using-gateway","accessing_over_http.html#rest-api","scheduling_jobs.html#scheduling-jobs","scheduling_jobs.html#using-job-scheduler","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.html#api-list","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":14,"breadcrumbs":3,"title":1},"103":{"body":14,"breadcrumbs":3,"title":1},"104":{"body":6,"breadcrumbs":4,"title":2},"105":{"body":3,"breadcrumbs":3,"title":1},"106":{"body":10,"breadcrumbs":3,"title":1},"107":{"body":44,"breadcrumbs":3,"title":1},"108":{"body":12,"breadcrumbs":4,"title":2},"109":{"body":17,"breadcrumbs":3,"title":1},"11":{"body":12,"breadcrumbs":2,"title":2},"110":{"body":9,"breadcrumbs":4,"title":2},"111":{"body":3,"breadcrumbs":3,"title":1},"112":{"body":10,"breadcrumbs":3,"title":1},"113":{"body":46,"breadcrumbs":3,"title":1},"114":{"body":12,"breadcrumbs":3,"title":1},"115":{"body":0,"breadcrumbs":3,"title":2},"116":{"body":37,"breadcrumbs":3,"title":2},"117":{"body":4,"breadcrumbs":4,"title":2},"118":{"body":1,"breadcrumbs":3,"title":1},"119":{"body":5,"breadcrumbs":3,"title":1},"12":{"body":42,"breadcrumbs":2,"title":2},"120":{"body":9,"breadcrumbs":4,"title":2},"121":{"body":1,"breadcrumbs":3,"title":1},"122":{"body":6,"breadcrumbs":3,"title":1},"123":{"body":12,"breadcrumbs":4,"title":2},"124":{"body":1,"breadcrumbs":3,"title":1},"125":{"body":5,"breadcrumbs":3,"title":1},"126":{"body":13,"breadcrumbs":4,"title":2},"127":{"body":4,"breadcrumbs":3,"title":1},"128":{"body":13,"breadcrumbs":4,"title":2},"129":{"body":6,"breadcrumbs":4,"title":2},"13":{"body":13,"breadcrumbs":3,"title":3},"130":{"body":27,"breadcrumbs":3,"title":1},"131":{"body":5,"breadcrumbs":3,"title":1},"132":{"body":1,"breadcrumbs":3,"title":1},"133":{"body":6,"breadcrumbs":4,"title":2},"134":{"body":4,"breadcrumbs":3,"title":1},"135":{"body":6,"breadcrumbs":4,"title":2},"136":{"body":4,"breadcrumbs":3,"title":1},"137":{"body":6,"breadcrumbs":4,"title":2},"138":{"body":5,"breadcrumbs":4,"title":2},"139":{"body":20,"breadcrumbs":3,"title":1},"14":{"body":95,"breadcrumbs":2,"title":2},"140":{"body":5,"breadcrumbs":4,"title":2},"141":{"body":1,"breadcrumbs":3,"title":1},"142":{"body":67,"breadcrumbs":4,"title":2},"143":{"body":15,"breadcrumbs":3,"title":1},"144":{"body":6,"breadcrumbs":4,"title":2},"145":{"body":1,"breadcrumbs":3,"title":1},"146":{"body":5,"breadcrumbs":3,"title":1},"147":{"body":10,"breadcrumbs":4,"title":2},"148":{"body":1,"breadcrumbs":3,"title":1},"149":{"body":5,"breadcrumbs":3,"title":1},"15":{"body":11,"breadcrumbs":2,"title":2},"150":{"body":6,"breadcrumbs":4,"title":2},"151":{"body":1,"breadcrumbs":3,"title":1},"152":{"body":6,"breadcrumbs":3,"title":1},"153":{"body":7,"breadcrumbs":4,"title":2},"154":{"body":1,"breadcrumbs":3,"title":1},"155":{"body":6,"breadcrumbs":3,"title":1},"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":90,"breadcrumbs":6,"title":6},"27":{"body":24,"breadcrumbs":2,"title":2},"28":{"body":33,"breadcrumbs":3,"title":3},"29":{"body":16,"breadcrumbs":3,"title":3},"3":{"body":1,"breadcrumbs":3,"title":3},"30":{"body":20,"breadcrumbs":2,"title":2},"31":{"body":4,"breadcrumbs":2,"title":2},"32":{"body":8,"breadcrumbs":2,"title":2},"33":{"body":30,"breadcrumbs":3,"title":3},"34":{"body":9,"breadcrumbs":2,"title":2},"35":{"body":9,"breadcrumbs":3,"title":3},"36":{"body":15,"breadcrumbs":3,"title":3},"37":{"body":2,"breadcrumbs":1,"title":1},"38":{"body":6,"breadcrumbs":2,"title":1},"39":{"body":2,"breadcrumbs":2,"title":1},"4":{"body":2,"breadcrumbs":1,"title":1},"40":{"body":10,"breadcrumbs":2,"title":1},"41":{"body":145,"breadcrumbs":2,"title":1},"42":{"body":5,"breadcrumbs":2,"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":123,"breadcrumbs":3,"title":1},"47":{"body":22,"breadcrumbs":3,"title":1},"48":{"body":5,"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":12,"breadcrumbs":3,"title":1},"53":{"body":10,"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":14,"breadcrumbs":3,"title":1},"58":{"body":13,"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":9,"breadcrumbs":3,"title":1},"62":{"body":12,"breadcrumbs":3,"title":1},"63":{"body":11,"breadcrumbs":4,"title":2},"64":{"body":3,"breadcrumbs":3,"title":1},"65":{"body":10,"breadcrumbs":3,"title":1},"66":{"body":25,"breadcrumbs":3,"title":1},"67":{"body":13,"breadcrumbs":3,"title":1},"68":{"body":14,"breadcrumbs":4,"title":2},"69":{"body":5,"breadcrumbs":3,"title":1},"7":{"body":15,"breadcrumbs":1,"title":1},"70":{"body":18,"breadcrumbs":3,"title":1},"71":{"body":37,"breadcrumbs":3,"title":1},"72":{"body":13,"breadcrumbs":3,"title":1},"73":{"body":6,"breadcrumbs":3,"title":1},"74":{"body":3,"breadcrumbs":3,"title":1},"75":{"body":10,"breadcrumbs":3,"title":1},"76":{"body":21,"breadcrumbs":3,"title":1},"77":{"body":5,"breadcrumbs":3,"title":1},"78":{"body":7,"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":11,"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":12,"breadcrumbs":3,"title":1},"88":{"body":7,"breadcrumbs":4,"title":2},"89":{"body":3,"breadcrumbs":3,"title":1},"9":{"body":126,"breadcrumbs":6,"title":6},"90":{"body":10,"breadcrumbs":3,"title":1},"91":{"body":14,"breadcrumbs":3,"title":1},"92":{"body":14,"breadcrumbs":3,"title":1},"93":{"body":6,"breadcrumbs":4,"title":2},"94":{"body":4,"breadcrumbs":3,"title":1},"95":{"body":32,"breadcrumbs":3,"title":1},"96":{"body":56,"breadcrumbs":3,"title":1},"97":{"body":5,"breadcrumbs":3,"title":1},"98":{"body":18,"breadcrumbs":3,"title":1},"99":{"body":8,"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 schema [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]","breadcrumbs":"Reference » bayard » OPTIONS","id":"102","title":"OPTIONS"},"103":{"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":"103","title":"EXAMPLES"},"104":{"body":"The bayard schedule CLI starts the job scheduler.","breadcrumbs":"Reference » bayard » bayard schedule","id":"104","title":"bayard schedule"},"105":{"body":"bayard schedule [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"105","title":"USAGE"},"106":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"106","title":"FLAGS"},"107":{"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":"107","title":"OPTIONS"},"108":{"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":"108","title":"SCHEDULE FORMAT"},"109":{"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":"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 bayard gateway CLI starts a gateway for access the server over HTTP.","breadcrumbs":"Reference » bayard » bayard gateway","id":"110","title":"bayard gateway"},"111":{"body":"bayard gateway [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"111","title":"USAGE"},"112":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"112","title":"FLAGS"},"113":{"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":"113","title":"OPTIONS"},"114":{"body":"To start gateway with default options: $ ./bin/bayard gateway To start gateway with options: $ ./bin/bayard gateway --servers=127.0.0.1:5001,127.0.0.1:5002,127.0.0.1:5003","breadcrumbs":"Reference » bayard » EXAMPLES","id":"114","title":"EXAMPLES"},"115":{"body":"","breadcrumbs":"Reference » REST API","id":"115","title":"REST API"},"116":{"body":"Probe API Peers API Metrics API Put API Get API Delete API Search API Commit API Rollback API Merge API Schema API 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 » API list","id":"116","title":"API list"},"117":{"body":"Probe API probes the server.","breadcrumbs":"Reference » APIs » Probe API","id":"117","title":"Probe API"},"118":{"body":"GET /probe","breadcrumbs":"Reference » APIs » Request","id":"118","title":"Request"},"119":{"body":"To probe a server: $ curl -X GET 'http://localhost:8000/probe'","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: { \"_id\": [ \"1\" ], \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1152 ], \"timestamp\": [ \"2019-12-19T01:41:00+00:00\" ], \"url\": [ \"https://github.com/bayard-search/bayard\" ]\n}","breadcrumbs":"Getting document","id":"12","title":"Getting document"},"120":{"body":"Peers API shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » APIs » Peers API","id":"120","title":"Peers API"},"121":{"body":"GET /peers","breadcrumbs":"Reference » APIs » Request","id":"121","title":"Request"},"122":{"body":"To show peers of the cluster: $ curl -X GET 'http://localhost:8000/peers'","breadcrumbs":"Reference » APIs » Examples","id":"122","title":"Examples"},"123":{"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":"123","title":"Metrics API"},"124":{"body":"GET /metrics","breadcrumbs":"Reference » APIs » Request","id":"124","title":"Request"},"125":{"body":"To show metrics: $ curl -X GET 'http://localhost:8000/metrics'","breadcrumbs":"Reference » APIs » Examples","id":"125","title":"Examples"},"126":{"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":"126","title":"Put API"},"127":{"body":"PUT /index/docs/\nPUT /index/docs","breadcrumbs":"Reference » APIs » Request","id":"127","title":"Request"},"128":{"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":"128","title":"Path parameters"},"129":{"body":" Document(s) expressed in JSON or JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"129","title":"Request body"},"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":"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":"130","title":"Example"},"131":{"body":"Get API gets a document with the specified ID.","breadcrumbs":"Reference » APIs » Get API","id":"131","title":"Get API"},"132":{"body":"GET /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"132","title":"Request"},"133":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"133","title":"Path parameters"},"134":{"body":"To get a document: $ curl -X GET 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"134","title":"Examples"},"135":{"body":"Delete API deletes a document with the specified ID.","breadcrumbs":"Reference » APIs » Delete API","id":"135","title":"Delete API"},"136":{"body":"DELETE /index/docs/\nDELETE /index/docs","breadcrumbs":"Reference » APIs » Request","id":"136","title":"Request"},"137":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"137","title":"Path parameters"},"138":{"body":" Document(s) expressed in JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"138","title":"Request body"},"139":{"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":"139","title":"Examples"},"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\": { \"_id\": [ \"8\" ], \"category\": [ \"/category/search/library\", \"/language/rust\" ], \"description\": [ \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\" ], \"name\": [ \"Tantivy\" ], \"popularity\": [ 3142 ], \"timestamp\": [ \"2019-12-19T01:07:00+00:00\" ], \"url\": [ \"https://github.com/tantivy-search/tantivy\" ] }, \"score\": 1.5722498 }, { \"fields\": { \"_id\": [ \"1\" ], \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1152 ], \"timestamp\": [ \"2019-12-19T01:41:00+00:00\" ], \"url\": [ \"https://github.com/bayard-search/bayard\" ] }, \"score\": 1.5331805 } ], \"facet\": { \"category\": { \"/language/rust\": 2, \"/category/search/library\": 1, \"/category/search/server\": 1 } }\n}","breadcrumbs":"Searching documents","id":"14","title":"Searching documents"},"140":{"body":"Search API searches documents from the index.","breadcrumbs":"Reference » APIs » Search API","id":"140","title":"Search API"},"141":{"body":"GET /index/search","breadcrumbs":"Reference » APIs » Request","id":"141","title":"Request"},"142":{"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":"142","title":"Query parameters"},"143":{"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":"143","title":"Example"},"144":{"body":"Commit API commits updates made to the index.","breadcrumbs":"Reference » APIs » Commit API","id":"144","title":"Commit API"},"145":{"body":"GET /index/commit","breadcrumbs":"Reference » APIs » Request","id":"145","title":"Request"},"146":{"body":"To commit an index: $ curl -X GET 'http://localhost:8000/index/commit'","breadcrumbs":"Reference » APIs » Example","id":"146","title":"Example"},"147":{"body":"Rollback API rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » APIs » Rollback API","id":"147","title":"Rollback API"},"148":{"body":"GET /index/rollback","breadcrumbs":"Reference » APIs » Request","id":"148","title":"Request"},"149":{"body":"To rollback an index: $ curl -X GET 'http://localhost:8000/index/rollback'","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"},"150":{"body":"Merge API merges fragmented segments in the index.","breadcrumbs":"Reference » APIs » Merge API","id":"150","title":"Merge API"},"151":{"body":"GET /index/merge","breadcrumbs":"Reference » APIs » Request","id":"151","title":"Request"},"152":{"body":"To merge segments in the index: $ curl -X GET 'http://localhost:8000/index/merge'","breadcrumbs":"Reference » APIs » Examples","id":"152","title":"Examples"},"153":{"body":"Schema API shows the index schema that the server applied.","breadcrumbs":"Reference » APIs » Schema API","id":"153","title":"Schema API"},"154":{"body":"GET /index/schema","breadcrumbs":"Reference » APIs » Request","id":"154","title":"Request"},"155":{"body":"To show the index schema: $ curl -X GET 'http://localhost:8000/index/schema'","breadcrumbs":"Reference » APIs » Examples","id":"155","title":"Examples"},"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 $ ./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 $ ./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 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":"Bayard supports gRPC connections, but some users may want to use the traditional RESTful API over HTTP. Gateways are useful in such cases.","breadcrumbs":"Accessing over the HTTP","id":"29","title":"Accessing over the HTTP"},"3":{"body":"https://hub.docker.com/r/bayardsearch/bayard","breadcrumbs":"Docker container repository","id":"3","title":"Docker container repository"},"30":{"body":"Starting a Gateway is easy. $ ./bin/bayard gateway If you want to start a Gateway that connects to Bayard running in cluster mode, we recommend that you specify a flag as follows: $ ./bin/bayard gateway --servers=127.0.0.1:5001,127.0.0.1:5002,127.0.0.1:5003","breadcrumbs":"Using Gateway","id":"30","title":"Using Gateway"},"31":{"body":"See following documents: APIs","breadcrumbs":"REST API","id":"31","title":"REST API"},"32":{"body":"You can use the Job scheduler to execute periodic commits and index merges.","breadcrumbs":"Scheduling jobs","id":"32","title":"Scheduling jobs"},"33":{"body":"Start the job scheduler as follows: $ ./bin/bayard schedule To specify job scheduler settings: $ ./bin/bayard schedule --commit=\"0/10 * * * * * *\" --merge=\"0 0 2 * * * *\" The format of the settings is very similar to the crontab. sec min hour day-of-month month day-of-week year\n* * * * * * *","breadcrumbs":"Using Job scheduler","id":"33","title":"Using Job scheduler"},"34":{"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":"34","title":"Running on Docker"},"35":{"body":"You can pull the Docker container image with the following command: $ docker pull bayardsearch/bayard:latest","breadcrumbs":"Pulling Docker container","id":"35","title":"Pulling Docker container"},"36":{"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":"36","title":"Running Docker container"},"37":{"body":"bayard APIs","breadcrumbs":"Reference","id":"37","title":"Reference"},"38":{"body":"The bayard CLI manages server, cluster and index.","breadcrumbs":"Reference » bayard","id":"38","title":"bayard"},"39":{"body":"bayard ","breadcrumbs":"Reference » 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 » FLAGS","id":"40","title":"FLAGS"},"41":{"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":"41","title":"SUBCOMMANDS"},"42":{"body":"To print version information: $ ./bin/bayard -v","breadcrumbs":"Reference » EXAMPLES","id":"42","title":"EXAMPLES"},"43":{"body":"The bayard serve CLI starts the server.","breadcrumbs":"Reference » bayard » bayard serve","id":"43","title":"bayard serve"},"44":{"body":"bayard serve [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":"-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":"46","title":"OPTIONS"},"47":{"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":"47","title":"EXAMPLES"},"48":{"body":"The bayard probe CLI probes the server.","breadcrumbs":"Reference » bayard » bayard probe","id":"48","title":"bayard probe"},"49":{"body":"bayard probe [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 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":"52","title":"EXAMPLES"},"53":{"body":"The bayard peers CLI shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard peers","id":"53","title":"bayard peers"},"54":{"body":"bayard peers [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 Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"56","title":"OPTIONS"},"57":{"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":"57","title":"EXAMPLES"},"58":{"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":"58","title":"bayard metrics"},"59":{"body":"bayard metrics [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, --server IP:PORT Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"61","title":"OPTIONS"},"62":{"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":"62","title":"EXAMPLES"},"63":{"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":"63","title":"bayard leave"},"64":{"body":"bayard leave [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"64","title":"USAGE"},"65":{"body":"-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 Node ID to be removed from the cluster that specified server is joining. [default: 1]","breadcrumbs":"Reference » bayard » OPTIONS","id":"66","title":"OPTIONS"},"67":{"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":"67","title":"EXAMPLES"},"68":{"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":"68","title":"bayard put"},"69":{"body":"bayard put [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":"-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":"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. 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":"71","title":"OPTIONS"},"72":{"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":"72","title":"EXAMPLES"},"73":{"body":"The bayard get CLI gets a document with the specified ID.","breadcrumbs":"Reference » bayard » bayard get","id":"73","title":"bayard get"},"74":{"body":"bayard get [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]\n-i, --id A unique value that identifies the document in the index.","breadcrumbs":"Reference » bayard » OPTIONS","id":"76","title":"OPTIONS"},"77":{"body":"To get a document with default options: $ ./bin/bayard get --id=1","breadcrumbs":"Reference » bayard » EXAMPLES","id":"77","title":"EXAMPLES"},"78":{"body":"The bayard commit CLI commits updates made to the index.","breadcrumbs":"Reference » bayard » bayard commit","id":"78","title":"bayard commit"},"79":{"body":"bayard commit [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 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":"82","title":"EXAMPLES"},"83":{"body":"The bayard rollback CLI rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » bayard » bayard rollback","id":"83","title":"bayard rollback"},"84":{"body":"bayard rollback [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 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":"87","title":"EXAMPLES"},"88":{"body":"The bayard merge CLI merges fragmented segments in the index.","breadcrumbs":"Reference » bayard » bayard merge","id":"88","title":"bayard merge"},"89":{"body":"bayard merge [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":"-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]","breadcrumbs":"Reference » bayard » OPTIONS","id":"91","title":"OPTIONS"},"92":{"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":"92","title":"EXAMPLES"},"93":{"body":"The bayard search CLI searches documents from the index.","breadcrumbs":"Reference » bayard » bayard search","id":"93","title":"bayard search"},"94":{"body":"bayard search [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"94","title":"USAGE"},"95":{"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":"95","title":"FLAGS"},"96":{"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":"96","title":"OPTIONS"},"97":{"body":" Query string to search the index.","breadcrumbs":"Reference » bayard » ARGS","id":"97","title":"ARGS"},"98":{"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":"98","title":"EXAMPLES"},"99":{"body":"The bayard schema CLI shows the index schema that the server applied.","breadcrumbs":"Reference » bayard » bayard schema","id":"99","title":"bayard schema"}},"length":156,"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":{"113":{"tf":1.0},"46":{"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":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"142":{"tf":1.0},"33":{"tf":1.0},"9":{"tf":2.449489742783178},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}},"1":{"5":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"9":{"df":0,"docs":{},"t":{"0":{"1":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"12":{"tf":1.0},"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":{}},"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},"46":{"tf":1.0},"66":{"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":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":6,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"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":{"4":{"2":{"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":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"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":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"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":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"41":{"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},"107":{"tf":1.0},"113":{"tf":2.0},"120":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.0},"51":{"tf":1.0},"53":{"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},"96":{"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":{"142":{"tf":1.0},"22":{"tf":1.0},"96":{"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":16,"docs":{"115":{"tf":1.0},"116":{"tf":3.605551275463989},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"37":{"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":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"153":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"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":{"107":{"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},"34":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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":42,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"tf":1.4142135623730951},"94":{"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":{"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"70":{"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":28,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"114":{"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},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"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.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"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":{"130":{"tf":1.4142135623730951},"139":{"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":{"129":{"tf":1.0},"138":{"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":{"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"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":{"107":{"tf":1.0},"95":{"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":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"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":28,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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},"9":{"tf":1.0},"91":{"tf":1.0},"96":{"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},"35":{"tf":1.0},"36":{"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":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"46":{"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}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"95":{"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":{"107":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":2,"docs":{"46":{"tf":1.0},"95":{"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":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"109":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"142":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"46":{"tf":3.4641016151377544},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"139":{"tf":2.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"28":{"tf":1.0},"41":{"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":{"116":{"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":{"46":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"47":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"95":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}},"df":37,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"31":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"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":3,"docs":{"0":{"tf":1.0},"30":{"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":{"46":{"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":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"24":{"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},"92":{"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":{"139":{"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":{"130":{"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":{"130":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"142":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"df":4,"docs":{"14":{"tf":2.0},"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"71":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"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":14,"docs":{"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.6457513110645907},"20":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"96":{"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},"47":{"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},"72":{"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},"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"142":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"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.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"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":20,"docs":{"10":{"tf":1.0},"108":{"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},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"71":{"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":{"150":{"tf":1.0},"41":{"tf":1.0},"88":{"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":{"98":{"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":7,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":2.0},"116":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"41":{"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},"131":{"tf":1.0},"41":{"tf":1.0},"73":{"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":{"41":{"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":3,"docs":{"0":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"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},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"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},"95":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"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},"95":{"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":{"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":2.0},"26":{"tf":2.23606797749979},"46":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"146":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"139":{"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":{"152":{"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":{"149":{"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":{"155":{"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":{"143":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"143":{"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":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"125":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"122":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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":{"34":{"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},"47":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"67":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.6457513110645907},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"127":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"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":{"148":{"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":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"32":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}}}}}},"df":2,"docs":{"113":{"tf":1.0},"46":{"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":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"41":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"66":{"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},"129":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"46":{"tf":2.0},"47":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"df":1,"docs":{"96":{"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},"41":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"142":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"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},"46":{"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},"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"107":{"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":9,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"150":{"tf":1.7320508075688772},"152":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"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":{"41":{"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":8,"docs":{"116":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"41":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"33":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"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":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"10":{"tf":2.8284271247461903},"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"36":{"tf":1.0},"46":{"tf":2.449489742783178},"96":{"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":{"126":{"tf":1.0},"41":{"tf":1.0},"68":{"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":{"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"66":{"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":{"113":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"46":{"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},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"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},"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},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"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},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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":{"126":{"tf":1.0},"128":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0}}}}},"df":3,"docs":{"113":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.0},"27":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"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}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"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},"47":{"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":3,"docs":{"113":{"tf":2.23606797749979},"26":{"tf":1.0},"46":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"142":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"96":{"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":{"142":{"tf":1.0},"96":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"41":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":2.0},"67":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"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":{"35":{"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":11,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"41":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"94":{"tf":1.0},"97":{"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},"46":{"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":2,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"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":{"37":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"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":{"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"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":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"116":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"41":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.0},"36":{"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":8,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"41":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"103":{"tf":2.0},"116":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"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},"107":{"tf":1.0},"113":{"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},"96":{"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":14,"docs":{"0":{"tf":1.4142135623730951},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":9,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"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":{"150":{"tf":1.0},"152":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"46":{"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},"96":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"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":{"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"153":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"38":{"tf":1.0},"41":{"tf":3.0},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"2":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"3":{"df":2,"docs":{"114":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"103":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"92":{"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":{}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"41":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"46":{"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":27,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":2.0},"20":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":2.8284271247461903},"46":{"tf":3.3166247903554},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"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":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"20":{"tf":1.0},"97":{"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":{"41":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"41":{"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":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"29":{"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":{"98":{"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":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"142":{"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},"130":{"tf":1.4142135623730951},"139":{"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":{"46":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"71":{"tf":1.0},"76":{"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":{"46":{"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":{"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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},"34":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"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},"94":{"tf":1.0}}}},"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"116":{"tf":1.0},"142":{"tf":2.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":2.6457513110645907},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}},"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"71":{"tf":1.0},"76":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0},"42":{"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},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"113":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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":{"46":{"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":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"113":{"tf":1.0},"46":{"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":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"142":{"tf":1.0},"33":{"tf":1.0},"9":{"tf":2.449489742783178},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}},"1":{"5":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"9":{"df":0,"docs":{},"t":{"0":{"1":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"12":{"tf":1.0},"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":{}},"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},"46":{"tf":1.0},"66":{"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":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":6,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"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":{"4":{"2":{"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":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"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":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"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":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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},"107":{"tf":1.0},"113":{"tf":2.0},"120":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.0},"51":{"tf":1.0},"53":{"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},"96":{"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":{"142":{"tf":1.0},"22":{"tf":1.0},"96":{"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":44,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":3.7416573867739413},"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":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.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},"150":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"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":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"153":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"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":{"107":{"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},"34":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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":86,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"41":{"tf":3.872983346207417},"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":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"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":{"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"70":{"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":28,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"114":{"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},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"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.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"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":{"130":{"tf":1.4142135623730951},"139":{"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":{"129":{"tf":1.4142135623730951},"138":{"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":{"13":{"tf":2.0},"130":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":2.0},"70":{"tf":1.4142135623730951},"72":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"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":{"107":{"tf":1.0},"95":{"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":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"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":28,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":2.6457513110645907},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"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},"35":{"tf":1.0},"36":{"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":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":2.0},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"46":{"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}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"95":{"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":{"107":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":2,"docs":{"46":{"tf":1.0},"95":{"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":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"109":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"142":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"46":{"tf":3.4641016151377544},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.4142135623730951},"139":{"tf":2.0},"15":{"tf":2.0},"16":{"tf":2.0},"28":{"tf":1.0},"41":{"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":{"116":{"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":{"46":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"47":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"95":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}},"df":37,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"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":3,"docs":{"0":{"tf":1.0},"30":{"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":{"46":{"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":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"24":{"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},"92":{"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":{"139":{"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":{"130":{"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":{"130":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"142":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"df":4,"docs":{"14":{"tf":2.0},"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"71":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"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":14,"docs":{"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.8284271247461903},"20":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"96":{"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},"47":{"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},"72":{"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},"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"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.7320508075688772},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"95":{"tf":2.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":20,"docs":{"10":{"tf":1.0},"108":{"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},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"71":{"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":{"150":{"tf":1.0},"41":{"tf":1.0},"88":{"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":{"98":{"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":7,"docs":{"110":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":2.0},"116":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"41":{"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},"131":{"tf":1.0},"41":{"tf":1.0},"73":{"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":{"41":{"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":3,"docs":{"0":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"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},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"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},"95":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"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},"95":{"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":{"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":2.0},"26":{"tf":2.23606797749979},"46":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"146":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"139":{"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":{"152":{"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":{"149":{"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":{"155":{"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":{"143":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"143":{"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":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"125":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"122":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"29":{"tf":1.7320508075688772},"41":{"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":{"34":{"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},"47":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"67":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.6457513110645907},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"127":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"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":{"148":{"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":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"32":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}}}}}},"df":2,"docs":{"113":{"tf":1.0},"46":{"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":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":2.0},"41":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"66":{"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},"129":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"46":{"tf":2.0},"47":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"df":1,"docs":{"96":{"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},"41":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"142":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"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},"46":{"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},"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"107":{"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":9,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"150":{"tf":2.0},"152":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0},"92":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"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":{"41":{"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":8,"docs":{"116":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"125":{"tf":1.0},"41":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"33":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"30":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"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":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"10":{"tf":2.8284271247461903},"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"36":{"tf":1.0},"46":{"tf":2.449489742783178},"96":{"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":{"126":{"tf":1.0},"41":{"tf":1.0},"68":{"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":{"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"66":{"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":{"113":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.7320508075688772},"46":{"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},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"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},"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},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"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},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.7320508075688772},"41":{"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":{"126":{"tf":1.0},"128":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"df":3,"docs":{"113":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"116":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"27":{"tf":2.0},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"57":{"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}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"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},"47":{"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":3,"docs":{"113":{"tf":2.23606797749979},"26":{"tf":1.0},"46":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"142":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"96":{"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":{"142":{"tf":1.0},"96":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"41":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":2.0},"67":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"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":{"35":{"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":11,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"41":{"tf":1.7320508075688772},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":2.0},"22":{"tf":1.0},"94":{"tf":1.0},"97":{"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},"46":{"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":2,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"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":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},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"37":{"tf":1.4142135623730951},"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},"41":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"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":{"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"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":4,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"116":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"41":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"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":8,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"103":{"tf":2.0},"116":{"tf":1.0},"153":{"tf":2.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.0},"99":{"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},"107":{"tf":1.0},"113":{"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},"96":{"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":14,"docs":{"0":{"tf":1.4142135623730951},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":9,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"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":{"150":{"tf":1.0},"152":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"46":{"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},"96":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"47":{"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":{"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"153":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.449489742783178},"38":{"tf":1.0},"41":{"tf":3.0},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"2":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"3":{"df":2,"docs":{"114":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"103":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"92":{"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":{}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"41":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"46":{"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":27,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":2.0},"20":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":2.8284271247461903},"46":{"tf":3.3166247903554},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"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":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"20":{"tf":1.0},"97":{"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":{"41":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"41":{"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":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"29":{"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":{"98":{"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":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"142":{"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},"130":{"tf":1.4142135623730951},"139":{"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":{"46":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"71":{"tf":1.0},"76":{"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":{"46":{"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":{"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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},"34":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"111":{"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},"94":{"tf":1.4142135623730951}}}},"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"116":{"tf":1.0},"142":{"tf":2.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"46":{"tf":2.6457513110645907},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}},"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"71":{"tf":1.0},"76":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0},"42":{"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},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"113":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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":{"46":{"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":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":14,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":17,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"110":{"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},"93":{"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":{"129":{"tf":1.0},"138":{"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":{"144":{"tf":1.0},"78":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"135":{"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":{"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"24":{"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},"92":{"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},"106":{"tf":1.0},"112":{"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},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"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":2,"docs":{"110":{"tf":1.0},"30":{"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}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"29":{"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":{}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"150":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"58":{"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},"107":{"tf":1.0},"113":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"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},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"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":{"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"31":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"10":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"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":{"41":{"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},"105":{"tf":1.0},"111":{"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},"94":{"tf":1.0}}}},"df":2,"docs":{"30":{"tf":1.0},"33":{"tf":1.0}}}}}}},"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","accessing_over_http.html#accessing-over-the-http","accessing_over_http.html#using-gateway","accessing_over_http.html#rest-api","scheduling_jobs.html#scheduling-jobs","scheduling_jobs.html#using-job-scheduler","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.html#api-list","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":14,"breadcrumbs":3,"title":1},"103":{"body":14,"breadcrumbs":3,"title":1},"104":{"body":6,"breadcrumbs":4,"title":2},"105":{"body":3,"breadcrumbs":3,"title":1},"106":{"body":10,"breadcrumbs":3,"title":1},"107":{"body":44,"breadcrumbs":3,"title":1},"108":{"body":12,"breadcrumbs":4,"title":2},"109":{"body":17,"breadcrumbs":3,"title":1},"11":{"body":12,"breadcrumbs":2,"title":2},"110":{"body":9,"breadcrumbs":4,"title":2},"111":{"body":3,"breadcrumbs":3,"title":1},"112":{"body":10,"breadcrumbs":3,"title":1},"113":{"body":46,"breadcrumbs":3,"title":1},"114":{"body":12,"breadcrumbs":3,"title":1},"115":{"body":0,"breadcrumbs":3,"title":2},"116":{"body":37,"breadcrumbs":3,"title":2},"117":{"body":4,"breadcrumbs":4,"title":2},"118":{"body":1,"breadcrumbs":3,"title":1},"119":{"body":5,"breadcrumbs":3,"title":1},"12":{"body":42,"breadcrumbs":2,"title":2},"120":{"body":9,"breadcrumbs":4,"title":2},"121":{"body":1,"breadcrumbs":3,"title":1},"122":{"body":6,"breadcrumbs":3,"title":1},"123":{"body":12,"breadcrumbs":4,"title":2},"124":{"body":1,"breadcrumbs":3,"title":1},"125":{"body":5,"breadcrumbs":3,"title":1},"126":{"body":13,"breadcrumbs":4,"title":2},"127":{"body":4,"breadcrumbs":3,"title":1},"128":{"body":13,"breadcrumbs":4,"title":2},"129":{"body":6,"breadcrumbs":4,"title":2},"13":{"body":13,"breadcrumbs":3,"title":3},"130":{"body":27,"breadcrumbs":3,"title":1},"131":{"body":5,"breadcrumbs":3,"title":1},"132":{"body":1,"breadcrumbs":3,"title":1},"133":{"body":6,"breadcrumbs":4,"title":2},"134":{"body":4,"breadcrumbs":3,"title":1},"135":{"body":6,"breadcrumbs":4,"title":2},"136":{"body":4,"breadcrumbs":3,"title":1},"137":{"body":6,"breadcrumbs":4,"title":2},"138":{"body":5,"breadcrumbs":4,"title":2},"139":{"body":20,"breadcrumbs":3,"title":1},"14":{"body":95,"breadcrumbs":2,"title":2},"140":{"body":5,"breadcrumbs":4,"title":2},"141":{"body":1,"breadcrumbs":3,"title":1},"142":{"body":67,"breadcrumbs":4,"title":2},"143":{"body":15,"breadcrumbs":3,"title":1},"144":{"body":6,"breadcrumbs":4,"title":2},"145":{"body":1,"breadcrumbs":3,"title":1},"146":{"body":5,"breadcrumbs":3,"title":1},"147":{"body":10,"breadcrumbs":4,"title":2},"148":{"body":1,"breadcrumbs":3,"title":1},"149":{"body":5,"breadcrumbs":3,"title":1},"15":{"body":11,"breadcrumbs":2,"title":2},"150":{"body":6,"breadcrumbs":4,"title":2},"151":{"body":1,"breadcrumbs":3,"title":1},"152":{"body":6,"breadcrumbs":3,"title":1},"153":{"body":7,"breadcrumbs":4,"title":2},"154":{"body":1,"breadcrumbs":3,"title":1},"155":{"body":6,"breadcrumbs":3,"title":1},"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":90,"breadcrumbs":6,"title":6},"27":{"body":24,"breadcrumbs":2,"title":2},"28":{"body":33,"breadcrumbs":3,"title":3},"29":{"body":16,"breadcrumbs":3,"title":3},"3":{"body":1,"breadcrumbs":3,"title":3},"30":{"body":20,"breadcrumbs":2,"title":2},"31":{"body":4,"breadcrumbs":2,"title":2},"32":{"body":8,"breadcrumbs":2,"title":2},"33":{"body":30,"breadcrumbs":3,"title":3},"34":{"body":9,"breadcrumbs":2,"title":2},"35":{"body":9,"breadcrumbs":3,"title":3},"36":{"body":15,"breadcrumbs":3,"title":3},"37":{"body":2,"breadcrumbs":1,"title":1},"38":{"body":6,"breadcrumbs":2,"title":1},"39":{"body":2,"breadcrumbs":2,"title":1},"4":{"body":2,"breadcrumbs":1,"title":1},"40":{"body":10,"breadcrumbs":2,"title":1},"41":{"body":145,"breadcrumbs":2,"title":1},"42":{"body":5,"breadcrumbs":2,"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":129,"breadcrumbs":3,"title":1},"47":{"body":18,"breadcrumbs":3,"title":1},"48":{"body":5,"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":12,"breadcrumbs":3,"title":1},"53":{"body":10,"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":14,"breadcrumbs":3,"title":1},"58":{"body":13,"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":9,"breadcrumbs":3,"title":1},"62":{"body":12,"breadcrumbs":3,"title":1},"63":{"body":11,"breadcrumbs":4,"title":2},"64":{"body":3,"breadcrumbs":3,"title":1},"65":{"body":10,"breadcrumbs":3,"title":1},"66":{"body":25,"breadcrumbs":3,"title":1},"67":{"body":13,"breadcrumbs":3,"title":1},"68":{"body":14,"breadcrumbs":4,"title":2},"69":{"body":5,"breadcrumbs":3,"title":1},"7":{"body":15,"breadcrumbs":1,"title":1},"70":{"body":18,"breadcrumbs":3,"title":1},"71":{"body":37,"breadcrumbs":3,"title":1},"72":{"body":13,"breadcrumbs":3,"title":1},"73":{"body":6,"breadcrumbs":3,"title":1},"74":{"body":3,"breadcrumbs":3,"title":1},"75":{"body":10,"breadcrumbs":3,"title":1},"76":{"body":21,"breadcrumbs":3,"title":1},"77":{"body":5,"breadcrumbs":3,"title":1},"78":{"body":7,"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":11,"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":12,"breadcrumbs":3,"title":1},"88":{"body":7,"breadcrumbs":4,"title":2},"89":{"body":3,"breadcrumbs":3,"title":1},"9":{"body":126,"breadcrumbs":6,"title":6},"90":{"body":10,"breadcrumbs":3,"title":1},"91":{"body":14,"breadcrumbs":3,"title":1},"92":{"body":14,"breadcrumbs":3,"title":1},"93":{"body":6,"breadcrumbs":4,"title":2},"94":{"body":4,"breadcrumbs":3,"title":1},"95":{"body":32,"breadcrumbs":3,"title":1},"96":{"body":56,"breadcrumbs":3,"title":1},"97":{"body":5,"breadcrumbs":3,"title":1},"98":{"body":18,"breadcrumbs":3,"title":1},"99":{"body":8,"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 schema [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]","breadcrumbs":"Reference » bayard » OPTIONS","id":"102","title":"OPTIONS"},"103":{"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":"103","title":"EXAMPLES"},"104":{"body":"The bayard schedule CLI starts the job scheduler.","breadcrumbs":"Reference » bayard » bayard schedule","id":"104","title":"bayard schedule"},"105":{"body":"bayard schedule [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"105","title":"USAGE"},"106":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"106","title":"FLAGS"},"107":{"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":"107","title":"OPTIONS"},"108":{"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":"108","title":"SCHEDULE FORMAT"},"109":{"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":"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 bayard gateway CLI starts a gateway for access the server over HTTP.","breadcrumbs":"Reference » bayard » bayard gateway","id":"110","title":"bayard gateway"},"111":{"body":"bayard gateway [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"111","title":"USAGE"},"112":{"body":"-h, --help Prints help information.\n-v, --version Prints version information.","breadcrumbs":"Reference » bayard » FLAGS","id":"112","title":"FLAGS"},"113":{"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":"113","title":"OPTIONS"},"114":{"body":"To start gateway with default options: $ ./bin/bayard gateway To start gateway with options: $ ./bin/bayard gateway --servers=127.0.0.1:5001,127.0.0.1:5002,127.0.0.1:5003","breadcrumbs":"Reference » bayard » EXAMPLES","id":"114","title":"EXAMPLES"},"115":{"body":"","breadcrumbs":"Reference » REST API","id":"115","title":"REST API"},"116":{"body":"Probe API Peers API Metrics API Put API Get API Delete API Search API Commit API Rollback API Merge API Schema API 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 » API list","id":"116","title":"API list"},"117":{"body":"Probe API probes the server.","breadcrumbs":"Reference » APIs » Probe API","id":"117","title":"Probe API"},"118":{"body":"GET /probe","breadcrumbs":"Reference » APIs » Request","id":"118","title":"Request"},"119":{"body":"To probe a server: $ curl -X GET 'http://localhost:8000/probe'","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: { \"_id\": [ \"1\" ], \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1152 ], \"timestamp\": [ \"2019-12-19T01:41:00+00:00\" ], \"url\": [ \"https://github.com/bayard-search/bayard\" ]\n}","breadcrumbs":"Getting document","id":"12","title":"Getting document"},"120":{"body":"Peers API shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » APIs » Peers API","id":"120","title":"Peers API"},"121":{"body":"GET /peers","breadcrumbs":"Reference » APIs » Request","id":"121","title":"Request"},"122":{"body":"To show peers of the cluster: $ curl -X GET 'http://localhost:8000/peers'","breadcrumbs":"Reference » APIs » Examples","id":"122","title":"Examples"},"123":{"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":"123","title":"Metrics API"},"124":{"body":"GET /metrics","breadcrumbs":"Reference » APIs » Request","id":"124","title":"Request"},"125":{"body":"To show metrics: $ curl -X GET 'http://localhost:8000/metrics'","breadcrumbs":"Reference » APIs » Examples","id":"125","title":"Examples"},"126":{"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":"126","title":"Put API"},"127":{"body":"PUT /index/docs/\nPUT /index/docs","breadcrumbs":"Reference » APIs » Request","id":"127","title":"Request"},"128":{"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":"128","title":"Path parameters"},"129":{"body":" Document(s) expressed in JSON or JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"129","title":"Request body"},"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":"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":"130","title":"Example"},"131":{"body":"Get API gets a document with the specified ID.","breadcrumbs":"Reference » APIs » Get API","id":"131","title":"Get API"},"132":{"body":"GET /index/docs/","breadcrumbs":"Reference » APIs » Request","id":"132","title":"Request"},"133":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"133","title":"Path parameters"},"134":{"body":"To get a document: $ curl -X GET 'http://localhost:8000/index/docs/1'","breadcrumbs":"Reference » APIs » Examples","id":"134","title":"Examples"},"135":{"body":"Delete API deletes a document with the specified ID.","breadcrumbs":"Reference » APIs » Delete API","id":"135","title":"Delete API"},"136":{"body":"DELETE /index/docs/\nDELETE /index/docs","breadcrumbs":"Reference » APIs » Request","id":"136","title":"Request"},"137":{"body":" A unique value that identifies the document in the index.","breadcrumbs":"Reference » APIs » Path parameters","id":"137","title":"Path parameters"},"138":{"body":" Document(s) expressed in JSONL format","breadcrumbs":"Reference » APIs » Request body","id":"138","title":"Request body"},"139":{"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":"139","title":"Examples"},"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\": { \"_id\": [ \"8\" ], \"category\": [ \"/category/search/library\", \"/language/rust\" ], \"description\": [ \"Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust.\" ], \"name\": [ \"Tantivy\" ], \"popularity\": [ 3142 ], \"timestamp\": [ \"2019-12-19T01:07:00+00:00\" ], \"url\": [ \"https://github.com/tantivy-search/tantivy\" ] }, \"score\": 1.5722498 }, { \"fields\": { \"_id\": [ \"1\" ], \"category\": [ \"/category/search/server\", \"/language/rust\" ], \"description\": [ \"Bayard is a full text search and indexing server, written in Rust, built on top of Tantivy.\" ], \"name\": [ \"Bayard\" ], \"popularity\": [ 1152 ], \"timestamp\": [ \"2019-12-19T01:41:00+00:00\" ], \"url\": [ \"https://github.com/bayard-search/bayard\" ] }, \"score\": 1.5331805 } ], \"facet\": { \"category\": { \"/language/rust\": 2, \"/category/search/library\": 1, \"/category/search/server\": 1 } }\n}","breadcrumbs":"Searching documents","id":"14","title":"Searching documents"},"140":{"body":"Search API searches documents from the index.","breadcrumbs":"Reference » APIs » Search API","id":"140","title":"Search API"},"141":{"body":"GET /index/search","breadcrumbs":"Reference » APIs » Request","id":"141","title":"Request"},"142":{"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":"142","title":"Query parameters"},"143":{"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":"143","title":"Example"},"144":{"body":"Commit API commits updates made to the index.","breadcrumbs":"Reference » APIs » Commit API","id":"144","title":"Commit API"},"145":{"body":"GET /index/commit","breadcrumbs":"Reference » APIs » Request","id":"145","title":"Request"},"146":{"body":"To commit an index: $ curl -X GET 'http://localhost:8000/index/commit'","breadcrumbs":"Reference » APIs » Example","id":"146","title":"Example"},"147":{"body":"Rollback API rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » APIs » Rollback API","id":"147","title":"Rollback API"},"148":{"body":"GET /index/rollback","breadcrumbs":"Reference » APIs » Request","id":"148","title":"Request"},"149":{"body":"To rollback an index: $ curl -X GET 'http://localhost:8000/index/rollback'","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"},"150":{"body":"Merge API merges fragmented segments in the index.","breadcrumbs":"Reference » APIs » Merge API","id":"150","title":"Merge API"},"151":{"body":"GET /index/merge","breadcrumbs":"Reference » APIs » Request","id":"151","title":"Request"},"152":{"body":"To merge segments in the index: $ curl -X GET 'http://localhost:8000/index/merge'","breadcrumbs":"Reference » APIs » Examples","id":"152","title":"Examples"},"153":{"body":"Schema API shows the index schema that the server applied.","breadcrumbs":"Reference » APIs » Schema API","id":"153","title":"Schema API"},"154":{"body":"GET /index/schema","breadcrumbs":"Reference » APIs » Request","id":"154","title":"Request"},"155":{"body":"To show the index schema: $ curl -X GET 'http://localhost:8000/index/schema'","breadcrumbs":"Reference » APIs » Examples","id":"155","title":"Examples"},"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 $ ./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 $ ./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 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":"Bayard supports gRPC connections, but some users may want to use the traditional RESTful API over HTTP. Gateways are useful in such cases.","breadcrumbs":"Accessing over the HTTP","id":"29","title":"Accessing over the HTTP"},"3":{"body":"https://hub.docker.com/r/bayardsearch/bayard","breadcrumbs":"Docker container repository","id":"3","title":"Docker container repository"},"30":{"body":"Starting a Gateway is easy. $ ./bin/bayard gateway If you want to start a Gateway that connects to Bayard running in cluster mode, we recommend that you specify a flag as follows: $ ./bin/bayard gateway --servers=127.0.0.1:5001,127.0.0.1:5002,127.0.0.1:5003","breadcrumbs":"Using Gateway","id":"30","title":"Using Gateway"},"31":{"body":"See following documents: APIs","breadcrumbs":"REST API","id":"31","title":"REST API"},"32":{"body":"You can use the Job scheduler to execute periodic commits and index merges.","breadcrumbs":"Scheduling jobs","id":"32","title":"Scheduling jobs"},"33":{"body":"Start the job scheduler as follows: $ ./bin/bayard schedule To specify job scheduler settings: $ ./bin/bayard schedule --commit=\"0/10 * * * * * *\" --merge=\"0 0 2 * * * *\" The format of the settings is very similar to the crontab. sec min hour day-of-month month day-of-week year\n* * * * * * *","breadcrumbs":"Using Job scheduler","id":"33","title":"Using Job scheduler"},"34":{"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":"34","title":"Running on Docker"},"35":{"body":"You can pull the Docker container image with the following command: $ docker pull bayardsearch/bayard:latest","breadcrumbs":"Pulling Docker container","id":"35","title":"Pulling Docker container"},"36":{"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":"36","title":"Running Docker container"},"37":{"body":"bayard APIs","breadcrumbs":"Reference","id":"37","title":"Reference"},"38":{"body":"The bayard CLI manages server, cluster and index.","breadcrumbs":"Reference » bayard","id":"38","title":"bayard"},"39":{"body":"bayard ","breadcrumbs":"Reference » 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 » FLAGS","id":"40","title":"FLAGS"},"41":{"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":"41","title":"SUBCOMMANDS"},"42":{"body":"To print version information: $ ./bin/bayard -v","breadcrumbs":"Reference » EXAMPLES","id":"42","title":"EXAMPLES"},"43":{"body":"The bayard serve CLI starts the server.","breadcrumbs":"Reference » bayard » bayard serve","id":"43","title":"bayard serve"},"44":{"body":"bayard serve [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":"-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-t, --indexer-threads Number of indexer threads. If not specified, number of CPU cores - 1 will be used. [default: 7] -m, --indexer-memory-size Total memory size (in bytes) used by the indexer. It will be split for the different thread. If not specified, use the default. [default: 1000000000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"46","title":"OPTIONS"},"47":{"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","breadcrumbs":"Reference » bayard » EXAMPLES","id":"47","title":"EXAMPLES"},"48":{"body":"The bayard probe CLI probes the server.","breadcrumbs":"Reference » bayard » bayard probe","id":"48","title":"bayard probe"},"49":{"body":"bayard probe [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 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":"52","title":"EXAMPLES"},"53":{"body":"The bayard peers CLI shows the peer addresses of the cluster that the specified server is joining.","breadcrumbs":"Reference » bayard » bayard peers","id":"53","title":"bayard peers"},"54":{"body":"bayard peers [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 Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"56","title":"OPTIONS"},"57":{"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":"57","title":"EXAMPLES"},"58":{"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":"58","title":"bayard metrics"},"59":{"body":"bayard metrics [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, --server IP:PORT Server address in an existing cluster. [default: 127.0.0.1:5000]","breadcrumbs":"Reference » bayard » OPTIONS","id":"61","title":"OPTIONS"},"62":{"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":"62","title":"EXAMPLES"},"63":{"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":"63","title":"bayard leave"},"64":{"body":"bayard leave [OPTIONS]","breadcrumbs":"Reference » bayard » USAGE","id":"64","title":"USAGE"},"65":{"body":"-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 Node ID to be removed from the cluster that specified server is joining. [default: 1]","breadcrumbs":"Reference » bayard » OPTIONS","id":"66","title":"OPTIONS"},"67":{"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":"67","title":"EXAMPLES"},"68":{"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":"68","title":"bayard put"},"69":{"body":"bayard put [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":"-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":"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. 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":"71","title":"OPTIONS"},"72":{"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":"72","title":"EXAMPLES"},"73":{"body":"The bayard get CLI gets a document with the specified ID.","breadcrumbs":"Reference » bayard » bayard get","id":"73","title":"bayard get"},"74":{"body":"bayard get [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]\n-i, --id A unique value that identifies the document in the index.","breadcrumbs":"Reference » bayard » OPTIONS","id":"76","title":"OPTIONS"},"77":{"body":"To get a document with default options: $ ./bin/bayard get --id=1","breadcrumbs":"Reference » bayard » EXAMPLES","id":"77","title":"EXAMPLES"},"78":{"body":"The bayard commit CLI commits updates made to the index.","breadcrumbs":"Reference » bayard » bayard commit","id":"78","title":"bayard commit"},"79":{"body":"bayard commit [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 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":"82","title":"EXAMPLES"},"83":{"body":"The bayard rollback CLI rolls back any updates made to the index to the last committed state.","breadcrumbs":"Reference » bayard » bayard rollback","id":"83","title":"bayard rollback"},"84":{"body":"bayard rollback [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 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":"87","title":"EXAMPLES"},"88":{"body":"The bayard merge CLI merges fragmented segments in the index.","breadcrumbs":"Reference » bayard » bayard merge","id":"88","title":"bayard merge"},"89":{"body":"bayard merge [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":"-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]","breadcrumbs":"Reference » bayard » OPTIONS","id":"91","title":"OPTIONS"},"92":{"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":"92","title":"EXAMPLES"},"93":{"body":"The bayard search CLI searches documents from the index.","breadcrumbs":"Reference » bayard » bayard search","id":"93","title":"bayard search"},"94":{"body":"bayard search [OPTIONS] ","breadcrumbs":"Reference » bayard » USAGE","id":"94","title":"USAGE"},"95":{"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":"95","title":"FLAGS"},"96":{"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":"96","title":"OPTIONS"},"97":{"body":" Query string to search the index.","breadcrumbs":"Reference » bayard » ARGS","id":"97","title":"ARGS"},"98":{"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":"98","title":"EXAMPLES"},"99":{"body":"The bayard schema CLI shows the index schema that the server applied.","breadcrumbs":"Reference » bayard » bayard schema","id":"99","title":"bayard schema"}},"length":156,"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":{"113":{"tf":1.0},"46":{"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":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"142":{"tf":1.0},"33":{"tf":1.0},"9":{"tf":2.449489742783178},"96":{"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":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":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":{"142":{"tf":1.0},"96":{"tf":1.0}}},"1":{"5":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"9":{"df":0,"docs":{},"t":{"0":{"1":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"12":{"tf":1.0},"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":{}},"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},"46":{"tf":1.4142135623730951},"66":{"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":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":6,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"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":{"4":{"2":{"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":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"20":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"46":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"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":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.0},"41":{"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},"107":{"tf":1.0},"113":{"tf":2.0},"120":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.0},"51":{"tf":1.0},"53":{"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},"96":{"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":{"142":{"tf":1.0},"22":{"tf":1.0},"96":{"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":16,"docs":{"115":{"tf":1.0},"116":{"tf":3.605551275463989},"117":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"37":{"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":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"153":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"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":{"107":{"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},"34":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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":42,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"tf":1.4142135623730951},"94":{"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":{"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"70":{"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":28,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"114":{"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},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"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.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"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":{"130":{"tf":1.4142135623730951},"139":{"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":{"129":{"tf":1.0},"138":{"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":{"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}},"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":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"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":{"107":{"tf":1.0},"95":{"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":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"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":28,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":2.449489742783178},"27":{"tf":1.4142135623730951},"28":{"tf":2.449489742783178},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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},"9":{"tf":1.0},"91":{"tf":1.0},"96":{"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},"35":{"tf":1.0},"36":{"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":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"46":{"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}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"46":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":2,"docs":{"46":{"tf":1.0},"95":{"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":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"109":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"142":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"46":{"tf":3.605551275463989},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"139":{"tf":2.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"28":{"tf":1.0},"41":{"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":{"116":{"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":2,"docs":{"26":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}}},"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":{"46":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"47":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"95":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}},"df":37,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"31":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"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":3,"docs":{"0":{"tf":1.0},"30":{"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":{"46":{"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":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"24":{"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},"92":{"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":{"139":{"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":{"130":{"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":{"130":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"142":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"df":4,"docs":{"14":{"tf":2.0},"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"71":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"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":12,"docs":{"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.6457513110645907},"20":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"96":{"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},"47":{"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},"72":{"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},"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"142":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"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.4142135623730951},"75":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.7320508075688772}}}},"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":20,"docs":{"10":{"tf":1.0},"108":{"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},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"71":{"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":{"150":{"tf":1.0},"41":{"tf":1.0},"88":{"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":{"98":{"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":7,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":2.0},"116":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"41":{"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},"131":{"tf":1.0},"41":{"tf":1.0},"73":{"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":{"41":{"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":3,"docs":{"0":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"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},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"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},"95":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"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},"95":{"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":{"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":2.0},"26":{"tf":2.23606797749979},"46":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"146":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"139":{"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":{"152":{"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":{"149":{"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":{"155":{"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":{"143":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"143":{"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":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"125":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"122":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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":{"34":{"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},"47":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"67":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"127":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"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":{"148":{"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":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"32":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"71":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}}}}}},"df":2,"docs":{"113":{"tf":1.0},"46":{"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":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"41":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"66":{"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},"129":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"df":1,"docs":{"96":{"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},"41":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"142":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}},"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},"46":{"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},"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"107":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"150":{"tf":1.7320508075688772},"152":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"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":{"41":{"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":8,"docs":{"116":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"41":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"33":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"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":11,"docs":{"10":{"tf":2.8284271247461903},"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"36":{"tf":1.0},"46":{"tf":1.4142135623730951},"96":{"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":{"126":{"tf":1.0},"41":{"tf":1.0},"68":{"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":{"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.0},"66":{"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":{"113":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.4142135623730951},"46":{"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},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"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},"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},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"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},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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":{"126":{"tf":1.0},"128":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0}}}}},"df":3,"docs":{"113":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.0},"27":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"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}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"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},"47":{"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":3,"docs":{"113":{"tf":2.23606797749979},"26":{"tf":1.0},"46":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"142":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"96":{"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":{"142":{"tf":1.0},"96":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"41":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":2.0},"67":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"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":{"35":{"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":11,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"41":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"94":{"tf":1.0},"97":{"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},"46":{"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":2,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"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":{"37":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"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":{"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"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":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"116":{"tf":1.0},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"41":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.0},"36":{"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":8,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"41":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"103":{"tf":2.0},"116":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"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},"107":{"tf":1.0},"113":{"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},"96":{"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":14,"docs":{"0":{"tf":1.4142135623730951},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":9,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"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":{"150":{"tf":1.0},"152":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"46":{"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},"96":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"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":{"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"153":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"38":{"tf":1.0},"41":{"tf":3.0},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"2":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"3":{"df":2,"docs":{"114":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"103":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"92":{"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":{}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"41":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{}}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"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":{"46":{"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":27,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":2.0},"20":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":2.8284271247461903},"46":{"tf":3.3166247903554},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"46":{"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":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"20":{"tf":1.0},"97":{"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":{"41":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"41":{"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":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"29":{"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":1,"docs":{"46":{"tf":1.0}},"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":{"98":{"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}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"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":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"142":{"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},"130":{"tf":1.4142135623730951},"139":{"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":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}},"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":{"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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},"34":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"111":{"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},"94":{"tf":1.0}}}},"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"116":{"tf":1.0},"142":{"tf":2.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":3.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},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}},"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"71":{"tf":1.0},"76":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0},"42":{"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},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"113":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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":{"46":{"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":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"113":{"tf":1.0},"46":{"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":{"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"142":{"tf":1.0},"33":{"tf":1.0},"9":{"tf":2.449489742783178},"96":{"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":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"46":{"tf":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":{"142":{"tf":1.0},"96":{"tf":1.0}}},"1":{"5":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"9":{"df":0,"docs":{},"t":{"0":{"1":{":":{"0":{"7":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{":":{"0":{"0":{"+":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"12":{"tf":1.0},"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":{}},"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},"46":{"tf":1.4142135623730951},"66":{"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":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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":6,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"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":{"4":{"2":{"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":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"20":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"46":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"14":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"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":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"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},"107":{"tf":1.0},"113":{"tf":2.0},"120":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":2.0},"51":{"tf":1.0},"53":{"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},"96":{"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":{"142":{"tf":1.0},"22":{"tf":1.0},"96":{"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":44,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":3.7416573867739413},"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":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.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},"150":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"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":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"0":{"tf":1.0}}},"df":5,"docs":{"153":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"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":{"107":{"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},"34":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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":86,"docs":{"0":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"25":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"41":{"tf":3.872983346207417},"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":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"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":{"35":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"70":{"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":28,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"114":{"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},"30":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"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.0},"82":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"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":{"130":{"tf":1.4142135623730951},"139":{"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":{"129":{"tf":1.4142135623730951},"138":{"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":{"13":{"tf":2.0},"130":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":2.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}},"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":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"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":{"107":{"tf":1.0},"95":{"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":{"104":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":3.872983346207417},"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},"93":{"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":28,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":2.8284271247461903},"27":{"tf":1.7320508075688772},"28":{"tf":2.6457513110645907},"30":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"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},"35":{"tf":1.0},"36":{"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":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":2.0},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"46":{"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}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"142":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"23":{"tf":1.0},"46":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.4142135623730951}},"t":{"a":{"b":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":5,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0},"26":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0}}}},"y":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951}}}},"df":2,"docs":{"46":{"tf":1.0},"95":{"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":1.4142135623730951},"103":{"tf":1.0},"107":{"tf":2.449489742783178},"109":{"tf":1.0},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"142":{"tf":2.8284271247461903},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"46":{"tf":3.605551275463989},"47":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"116":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.4142135623730951},"139":{"tf":2.0},"15":{"tf":2.0},"16":{"tf":2.0},"28":{"tf":1.0},"41":{"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":{"116":{"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":2,"docs":{"26":{"tf":1.7320508075688772},"46":{"tf":1.0}}}}}},"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":{"46":{"tf":1.7320508075688772},"7":{"tf":1.0}}},"y":{"=":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"1":{"df":2,"docs":{"26":{"tf":1.0},"47":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"14":{"tf":1.0},"95":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"3":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":2.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"tf":1.0}}},"df":37,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":2.23606797749979},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"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":3,"docs":{"0":{"tf":1.0},"30":{"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":{"46":{"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":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"24":{"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},"92":{"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":{"139":{"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":{"130":{"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":{"130":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"142":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}}}},"df":4,"docs":{"14":{"tf":2.0},"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"71":{"tf":1.0},"96":{"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":{"142":{"tf":1.0},"96":{"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":12,"docs":{"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":2.8284271247461903},"20":{"tf":3.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"96":{"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},"47":{"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},"72":{"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},"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"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.7320508075688772},"75":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"95":{"tf":2.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":20,"docs":{"10":{"tf":1.0},"108":{"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},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"12":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"71":{"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":{"150":{"tf":1.0},"41":{"tf":1.0},"88":{"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":{"98":{"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":7,"docs":{"110":{"tf":2.0},"111":{"tf":1.0},"114":{"tf":2.0},"116":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":2.449489742783178},"41":{"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},"131":{"tf":1.0},"41":{"tf":1.0},"73":{"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":{"41":{"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":3,"docs":{"0":{"tf":1.4142135623730951},"29":{"tf":1.0},"46":{"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},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"46":{"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},"95":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.4142135623730951},"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"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},"95":{"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":{"142":{"tf":1.4142135623730951},"20":{"tf":1.0},"96":{"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":{"142":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"0":{".":{"0":{".":{"0":{".":{"0":{"df":2,"docs":{"26":{"tf":1.7320508075688772},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":2.0},"26":{"tf":2.23606797749979},"46":{"tf":2.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"146":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"130":{"tf":1.0},"139":{"tf":1.0}},"s":{"/":{"1":{"df":3,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"139":{"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":{"152":{"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":{"149":{"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":{"155":{"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":{"143":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"143":{"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":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"125":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"122":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"29":{"tf":1.7320508075688772},"41":{"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":{"34":{"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},"47":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":3,"docs":{"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"67":{"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":{"46":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":14,"docs":{"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"127":{"tf":1.0},"136":{"tf":1.0}},"s":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"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":{"148":{"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":{"154":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.0},"24":{"tf":2.449489742783178},"32":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"71":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"22":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"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},"107":{"tf":1.0},"113":{"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},"96":{"tf":1.0}}}}}}},"df":2,"docs":{"113":{"tf":1.0},"46":{"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":5,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":2.0},"41":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"28":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"66":{"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},"129":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":3,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"71":{"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":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"df":1,"docs":{"96":{"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},"41":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"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":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"142":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"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},"46":{"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},"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"107":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"150":{"tf":2.0},"152":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.7320508075688772},"88":{"tf":2.0},"89":{"tf":1.0},"92":{"tf":2.0}},"e":{"=":{"\"":{"0":{"df":2,"docs":{"109":{"tf":1.0},"33":{"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":{"107":{"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":{"41":{"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":8,"docs":{"116":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":1.0},"125":{"tf":1.0},"41":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":2.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"33":{"tf":1.0}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"30":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"33":{"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":11,"docs":{"10":{"tf":2.8284271247461903},"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.4142135623730951},"22":{"tf":1.0},"24":{"tf":2.8284271247461903},"36":{"tf":1.0},"46":{"tf":1.4142135623730951},"96":{"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":{"126":{"tf":1.0},"41":{"tf":1.0},"68":{"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":{"116":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"66":{"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":{"113":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"20":{"tf":2.0},"23":{"tf":1.7320508075688772},"46":{"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},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"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},"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},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"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},"92":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"29":{"tf":1.7320508075688772},"41":{"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":{"126":{"tf":1.0},"128":{"tf":1.0},"41":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"128":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"df":3,"docs":{"113":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"116":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"27":{"tf":2.0},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"57":{"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}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"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},"47":{"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":3,"docs":{"113":{"tf":2.23606797749979},"26":{"tf":1.0},"46":{"tf":2.23606797749979}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"142":{"tf":1.0},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"96":{"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":{"142":{"tf":1.0},"96":{"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},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"41":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.0},"52":{"tf":2.0},"67":{"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":{"123":{"tf":1.0},"41":{"tf":1.0},"58":{"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":{"35":{"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":11,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"41":{"tf":1.7320508075688772},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":2.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":2.0},"22":{"tf":1.0},"94":{"tf":1.0},"97":{"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},"46":{"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":2,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0}}},"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":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},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"37":{"tf":1.4142135623730951},"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},"41":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"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":{"118":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"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":4,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"142":{"tf":1.0},"96":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"36":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"116":{"tf":1.0},"147":{"tf":1.7320508075688772},"149":{"tf":1.0},"41":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"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":8,"docs":{"104":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.0},"32":{"tf":1.7320508075688772},"33":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":14,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"103":{"tf":2.0},"116":{"tf":1.0},"153":{"tf":2.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"99":{"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},"107":{"tf":1.0},"113":{"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},"96":{"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":14,"docs":{"0":{"tf":1.4142135623730951},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":2.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":9,"docs":{"10":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"19":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.0},"34":{"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":{"150":{"tf":1.0},"152":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"113":{"tf":1.0},"46":{"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},"96":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"26":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"47":{"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":{"52":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"153":{"tf":1.0},"26":{"tf":2.6457513110645907},"27":{"tf":1.0},"28":{"tf":2.449489742783178},"38":{"tf":1.0},"41":{"tf":3.0},"43":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"=":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"1":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"2":{",":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"5":{"0":{"0":{"3":{"df":2,"docs":{"114":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"103":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"92":{"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":{}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"41":{"tf":1.7320508075688772},"53":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{}}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}},"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":{"46":{"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":27,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":2.0},"20":{"tf":2.23606797749979},"30":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":2.8284271247461903},"46":{"tf":3.3166247903554},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"26":{"tf":1.0},"46":{"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":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"147":{"tf":1.0},"41":{"tf":1.0},"83":{"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},"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"142":{"tf":1.0},"20":{"tf":1.0},"97":{"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":{"41":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"41":{"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":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"29":{"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":1,"docs":{"46":{"tf":1.0}},"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":{"98":{"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}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"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":4,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"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}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":2.8284271247461903},"142":{"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},"130":{"tf":1.4142135623730951},"139":{"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":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}},"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":{"144":{"tf":1.0},"147":{"tf":1.0},"41":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"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},"34":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"111":{"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},"94":{"tf":1.4142135623730951}}}},"df":18,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"113":{"tf":2.0},"116":{"tf":1.0},"142":{"tf":2.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"46":{"tf":3.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},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}},"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":2.23606797749979},"23":{"tf":2.449489742783178},"71":{"tf":1.0},"76":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"df":17,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"40":{"tf":1.0},"42":{"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},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"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},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":2,"docs":{"113":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"142":{"tf":1.4142135623730951},"70":{"tf":1.0},"95":{"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":{"46":{"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":{"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"33":{"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":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":14,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"d":{"df":17,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"110":{"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},"93":{"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":{"129":{"tf":1.0},"138":{"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":{"144":{"tf":1.0},"78":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"135":{"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":{"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"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":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"24":{"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},"92":{"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},"106":{"tf":1.0},"112":{"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},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"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":2,"docs":{"110":{"tf":1.0},"30":{"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}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"29":{"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":{}}},"j":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"150":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"123":{"tf":1.0},"58":{"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},"107":{"tf":1.0},"113":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"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},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"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":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"117":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"t":{"df":2,"docs":{"126":{"tf":1.0},"68":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"37":{"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":{"118":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"31":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"36":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"10":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"14":{"tf":1.0},"140":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"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":{"41":{"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},"105":{"tf":1.0},"111":{"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},"94":{"tf":1.0}}}},"df":2,"docs":{"30":{"tf":1.0},"33":{"tf":1.0}}}}}}},"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/reference/bayard/serve.md b/docs_src/reference/bayard/serve.md
index 1f07d67..aeb346b 100644
--- a/docs_src/reference/bayard/serve.md
+++ b/docs_src/reference/bayard/serve.md
@@ -14,19 +14,29 @@ The `bayard serve` CLI starts the server.
## OPTIONS
-i, --id
- Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default ID. [default: 1]
+ Server ID. Must specify a numeric ID that is unique within the cluster. If not specified, use the default
+ ID. [default: 1]
-H, --host
- Host address. Must specify the host name or IP address. If not specified, use the default address. [default: 0.0.0.0]
+ Host address. Must specify the host name or IP address. If not specified, use the default address. [default:
+ 0.0.0.0]
-P, --port
- Port number. This port is used for communication via gRPC. If not specified, use the default port. [default: 5000]
+ Port number. This port is used for communication via gRPC. If not specified, use the default port. [default:
+ 5000]
-p, --peers ...
- Server ID and addresses in an existing cluster separated by ",". If specified, the server will join the cluster.
+ Server ID and addresses in an existing cluster separated by ",". If specified, the server will join the
+ cluster.
-d, --data-directory
- Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory. [default: ./data]
+ Data directory. Stores index, snapshots, and raft logs. If not specified, use the default directory.
+ [default: ./data]
-s, --schema-file
- Schema file. Must specify An existing file name. If not specified, use the default schema file. [default: ./etc/schema.json]
- -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]
+ Schema file. Must specify An existing file name. If not specified, use the default schema file. [default:
+ ./etc/schema.json]
+ -t, --indexer-threads
+ Number of indexer threads. If not specified, number of CPU cores - 1 will be used. [default: 7]
+
+ -m, --indexer-memory-size
+ Total memory size (in bytes) used by the indexer. It will be split for the different thread. If not
+ specified, use the default. [default: 1000000000]
## EXAMPLES
@@ -44,6 +54,5 @@ $ ./bin/bayard serve \
--host=0.0.0.0 \
--port=5001 \
--data-directory=./data/1 \
- --schema-file=./etc/schema.json \
- --unique-key-field-name=id
+ --schema-file=./etc/schema.json
```
diff --git a/proto/indexrpcpb.proto b/proto/indexrpcpb.proto
index 9021d69..1586203 100644
--- a/proto/indexrpcpb.proto
+++ b/proto/indexrpcpb.proto
@@ -6,19 +6,21 @@ import "eraftpb.proto";
enum RespErr {
OK = 0;
ErrWrongLeader = 1;
- ErrProbeFailed = 2;
- ErrPeerFailed = 3;
- ErrMetricsFailed = 4;
- ErrGetFailed = 5;
- ErrPutFailed = 6;
- ErrDeleteFailed = 7;
- ErrBulkPutFailed = 8;
- ErrBulkDeleteFailed = 9;
- ErrCommitFailed = 10;
- ErrRollbackFailed = 11;
- ErrMergeFailed = 12;
- ErrSearchFailed = 13;
- ErrSchemaFailed = 14;
+ ErrTimeout = 2;
+ ErrDisconnected = 3;
+ ErrProbeFailed = 4;
+ ErrPeerFailed = 5;
+ ErrMetricsFailed = 6;
+ ErrGetFailed = 7;
+ ErrPutFailed = 8;
+ ErrDeleteFailed = 9;
+ ErrBulkPutFailed = 10;
+ ErrBulkDeleteFailed = 11;
+ ErrCommitFailed = 12;
+ ErrRollbackFailed = 13;
+ ErrMergeFailed = 14;
+ ErrSearchFailed = 15;
+ ErrSchemaFailed = 16;
}
enum ReqType {
diff --git a/src/client/client.rs b/src/client/client.rs
index 73b5244..64a5240 100644
--- a/src/client/client.rs
+++ b/src/client/client.rs
@@ -560,7 +560,13 @@ impl Clerk {
resp
});
match reply.err {
- RespErr::OK => return reply.value,
+ RespErr::OK => {
+ debug!("commit succeeded");
+ return reply.value;
+ }
+ RespErr::ErrWrongLeader => error!("wrong leader"),
+ RespErr::ErrTimeout => error!("timeout"),
+ RespErr::ErrDisconnected => error!("disconnected"),
_ => error!("failed to commit index"),
}
self.leader_id = (self.leader_id + 1) % self.servers.len();
diff --git a/src/cmd/serve.rs b/src/cmd/serve.rs
index d1540a4..7bd2f50 100644
--- a/src/cmd/serve.rs
+++ b/src/cmd/serve.rs
@@ -24,8 +24,27 @@ 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 indexer_threads = matches
+ .value_of("INDEXER_THREADS")
+ .unwrap()
+ .parse::()
+ .unwrap();
+ let indexer_memory_size = matches
+ .value_of("INDEXER_MEMORY_SIZE")
+ .unwrap()
+ .parse::()
+ .unwrap();
- IndexServer::start_server(id, host, port, peers_addr, data_directory, schema_file);
+ IndexServer::start_server(
+ id,
+ host,
+ port,
+ peers_addr,
+ data_directory,
+ schema_file,
+ indexer_threads,
+ indexer_memory_size,
+ );
Ok(())
}
diff --git a/src/main.rs b/src/main.rs
index c5ec4e8..98ea6c4 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,6 +1,7 @@
extern crate bayard;
#[macro_use]
extern crate clap;
+extern crate num_cpus;
use std::io::Write;
@@ -23,12 +24,19 @@ use bayard::cmd::search::run_search_cli;
use bayard::cmd::serve::run_serve_cli;
fn main() {
+ let cpus = num_cpus::get().to_owned();
+ let threads;
+ if cpus > 1 {
+ threads = format!("{}", cpus - 1);
+ } else {
+ threads = format!("{}", cpus);
+ }
+
let app = App::new(crate_name!())
.setting(AppSettings::DeriveDisplayOrder)
.setting(AppSettings::SubcommandRequiredElseHelp)
.version(crate_version!())
.author(crate_authors!())
-// .about(crate_description!())
.about("The `bayard` CLI manages server, cluster and index.")
.help_message("Prints help information.")
.version_message("Prints version information.")
@@ -100,15 +108,24 @@ 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("INDEXER_THREADS")
+ .help("Number of indexer threads. If not specified, number of CPU cores - 1 will be used.")
+ .short("t")
+ .long("indexer-threads")
+ .value_name("INDEXER_THREADS")
+ .default_value(&threads)
+ .takes_value(true),
+ )
+ .arg(
+ Arg::with_name("INDEXER_MEMORY_SIZE")
+ .help("Total memory size (in bytes) used by the indexer. It will be split for the different thread. If not specified, use the default.")
+ .short("m")
+ .long("indexer-memory-size")
+ .value_name("INDEXER_MEMORY_SIZE")
+ .default_value("1000000000")
+ .takes_value(true),
+ )
)
.subcommand(
SubCommand::with_name("probe")
diff --git a/src/proto/indexrpcpb.rs b/src/proto/indexrpcpb.rs
index 11c98a8..c4570c1 100644
--- a/src/proto/indexrpcpb.rs
+++ b/src/proto/indexrpcpb.rs
@@ -7269,19 +7269,21 @@ impl ::protobuf::reflect::ProtobufValue for SchemaResp {
pub enum RespErr {
OK = 0,
ErrWrongLeader = 1,
- ErrProbeFailed = 2,
- ErrPeerFailed = 3,
- ErrMetricsFailed = 4,
- ErrGetFailed = 5,
- ErrPutFailed = 6,
- ErrDeleteFailed = 7,
- ErrBulkPutFailed = 8,
- ErrBulkDeleteFailed = 9,
- ErrCommitFailed = 10,
- ErrRollbackFailed = 11,
- ErrMergeFailed = 12,
- ErrSearchFailed = 13,
- ErrSchemaFailed = 14,
+ ErrTimeout = 2,
+ ErrDisconnected = 3,
+ ErrProbeFailed = 4,
+ ErrPeerFailed = 5,
+ ErrMetricsFailed = 6,
+ ErrGetFailed = 7,
+ ErrPutFailed = 8,
+ ErrDeleteFailed = 9,
+ ErrBulkPutFailed = 10,
+ ErrBulkDeleteFailed = 11,
+ ErrCommitFailed = 12,
+ ErrRollbackFailed = 13,
+ ErrMergeFailed = 14,
+ ErrSearchFailed = 15,
+ ErrSchemaFailed = 16,
}
impl ::protobuf::ProtobufEnum for RespErr {
@@ -7293,19 +7295,21 @@ impl ::protobuf::ProtobufEnum for RespErr {
match value {
0 => ::std::option::Option::Some(RespErr::OK),
1 => ::std::option::Option::Some(RespErr::ErrWrongLeader),
- 2 => ::std::option::Option::Some(RespErr::ErrProbeFailed),
- 3 => ::std::option::Option::Some(RespErr::ErrPeerFailed),
- 4 => ::std::option::Option::Some(RespErr::ErrMetricsFailed),
- 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::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),
+ 2 => ::std::option::Option::Some(RespErr::ErrTimeout),
+ 3 => ::std::option::Option::Some(RespErr::ErrDisconnected),
+ 4 => ::std::option::Option::Some(RespErr::ErrProbeFailed),
+ 5 => ::std::option::Option::Some(RespErr::ErrPeerFailed),
+ 6 => ::std::option::Option::Some(RespErr::ErrMetricsFailed),
+ 7 => ::std::option::Option::Some(RespErr::ErrGetFailed),
+ 8 => ::std::option::Option::Some(RespErr::ErrPutFailed),
+ 9 => ::std::option::Option::Some(RespErr::ErrDeleteFailed),
+ 10 => ::std::option::Option::Some(RespErr::ErrBulkPutFailed),
+ 11 => ::std::option::Option::Some(RespErr::ErrBulkDeleteFailed),
+ 12 => ::std::option::Option::Some(RespErr::ErrCommitFailed),
+ 13 => ::std::option::Option::Some(RespErr::ErrRollbackFailed),
+ 14 => ::std::option::Option::Some(RespErr::ErrMergeFailed),
+ 15 => ::std::option::Option::Some(RespErr::ErrSearchFailed),
+ 16 => ::std::option::Option::Some(RespErr::ErrSchemaFailed),
_ => ::std::option::Option::None
}
}
@@ -7314,6 +7318,8 @@ impl ::protobuf::ProtobufEnum for RespErr {
static values: &'static [RespErr] = &[
RespErr::OK,
RespErr::ErrWrongLeader,
+ RespErr::ErrTimeout,
+ RespErr::ErrDisconnected,
RespErr::ErrProbeFailed,
RespErr::ErrPeerFailed,
RespErr::ErrMetricsFailed,
@@ -7512,408 +7518,413 @@ 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*\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\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\
- \x12\x03\x08\x04\x17\n\x0c\n\x05\x05\0\x02\x02\x01\x12\x03\x08\x04\x12\n\
- \x0c\n\x05\x05\0\x02\x02\x02\x12\x03\x08\x15\x16\n\x0b\n\x04\x05\0\x02\
- \x03\x12\x03\t\x04\x16\n\x0c\n\x05\x05\0\x02\x03\x01\x12\x03\t\x04\x11\n\
- \x0c\n\x05\x05\0\x02\x03\x02\x12\x03\t\x14\x15\n\x0b\n\x04\x05\0\x02\x04\
- \x12\x03\n\x04\x19\n\x0c\n\x05\x05\0\x02\x04\x01\x12\x03\n\x04\x14\n\x0c\
- \n\x05\x05\0\x02\x04\x02\x12\x03\n\x17\x18\n\x0b\n\x04\x05\0\x02\x05\x12\
- \x03\x0b\x04\x15\n\x0c\n\x05\x05\0\x02\x05\x01\x12\x03\x0b\x04\x10\n\x0c\
- \n\x05\x05\0\x02\x05\x02\x12\x03\x0b\x13\x14\n\x0b\n\x04\x05\0\x02\x06\
- \x12\x03\x0c\x04\x15\n\x0c\n\x05\x05\0\x02\x06\x01\x12\x03\x0c\x04\x10\n\
- \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\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\
+ pcpb.RespErrR\x03err*\xd9\x02\n\x07RespErr\x12\x06\n\x02OK\x10\0\x12\x12\
+ \n\x0eErrWrongLeader\x10\x01\x12\x0e\n\nErrTimeout\x10\x02\x12\x13\n\x0f\
+ ErrDisconnected\x10\x03\x12\x12\n\x0eErrProbeFailed\x10\x04\x12\x11\n\rE\
+ rrPeerFailed\x10\x05\x12\x14\n\x10ErrMetricsFailed\x10\x06\x12\x10\n\x0c\
+ ErrGetFailed\x10\x07\x12\x10\n\x0cErrPutFailed\x10\x08\x12\x13\n\x0fErrD\
+ eleteFailed\x10\t\x12\x14\n\x10ErrBulkPutFailed\x10\n\x12\x17\n\x13ErrBu\
+ lkDeleteFailed\x10\x0b\x12\x13\n\x0fErrCommitFailed\x10\x0c\x12\x15\n\
+ \x11ErrRollbackFailed\x10\r\x12\x12\n\x0eErrMergeFailed\x10\x0e\x12\x13\
+ \n\x0fErrSearchFailed\x10\x0f\x12\x13\n\x0fErrSchemaFailed\x10\x10*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\x08Ro\
+ llback\x10\x07\x12\t\n\x05Merge\x10\x08J\xc3?\n\x07\x12\x05\0\0\xd5\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\x17\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\x12\x03\
+ \x08\x04\x13\n\x0c\n\x05\x05\0\x02\x02\x01\x12\x03\x08\x04\x0e\n\x0c\n\
+ \x05\x05\0\x02\x02\x02\x12\x03\x08\x11\x12\n\x0b\n\x04\x05\0\x02\x03\x12\
+ \x03\t\x04\x18\n\x0c\n\x05\x05\0\x02\x03\x01\x12\x03\t\x04\x13\n\x0c\n\
+ \x05\x05\0\x02\x03\x02\x12\x03\t\x16\x17\n\x0b\n\x04\x05\0\x02\x04\x12\
+ \x03\n\x04\x17\n\x0c\n\x05\x05\0\x02\x04\x01\x12\x03\n\x04\x12\n\x0c\n\
+ \x05\x05\0\x02\x04\x02\x12\x03\n\x15\x16\n\x0b\n\x04\x05\0\x02\x05\x12\
+ \x03\x0b\x04\x16\n\x0c\n\x05\x05\0\x02\x05\x01\x12\x03\x0b\x04\x11\n\x0c\
+ \n\x05\x05\0\x02\x05\x02\x12\x03\x0b\x14\x15\n\x0b\n\x04\x05\0\x02\x06\
+ \x12\x03\x0c\x04\x19\n\x0c\n\x05\x05\0\x02\x06\x01\x12\x03\x0c\x04\x14\n\
+ \x0c\n\x05\x05\0\x02\x06\x02\x12\x03\x0c\x17\x18\n\x0b\n\x04\x05\0\x02\
+ \x07\x12\x03\r\x04\x15\n\x0c\n\x05\x05\0\x02\x07\x01\x12\x03\r\x04\x10\n\
+ \x0c\n\x05\x05\0\x02\x07\x02\x12\x03\r\x13\x14\n\x0b\n\x04\x05\0\x02\x08\
+ \x12\x03\x0e\x04\x15\n\x0c\n\x05\x05\0\x02\x08\x01\x12\x03\x0e\x04\x10\n\
+ \x0c\n\x05\x05\0\x02\x08\x02\x12\x03\x0e\x13\x14\n\x0b\n\x04\x05\0\x02\t\
+ \x12\x03\x0f\x04\x18\n\x0c\n\x05\x05\0\x02\t\x01\x12\x03\x0f\x04\x13\n\
+ \x0c\n\x05\x05\0\x02\t\x02\x12\x03\x0f\x16\x17\n\x0b\n\x04\x05\0\x02\n\
+ \x12\x03\x10\x04\x1a\n\x0c\n\x05\x05\0\x02\n\x01\x12\x03\x10\x04\x14\n\
+ \x0c\n\x05\x05\0\x02\n\x02\x12\x03\x10\x17\x19\n\x0b\n\x04\x05\0\x02\x0b\
+ \x12\x03\x11\x04\x1d\n\x0c\n\x05\x05\0\x02\x0b\x01\x12\x03\x11\x04\x17\n\
+ \x0c\n\x05\x05\0\x02\x0b\x02\x12\x03\x11\x1a\x1c\n\x0b\n\x04\x05\0\x02\
+ \x0c\x12\x03\x12\x04\x19\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\x0b\n\x04\x05\0\
+ \x02\r\x12\x03\x13\x04\x1b\n\x0c\n\x05\x05\0\x02\r\x01\x12\x03\x13\x04\
+ \x15\n\x0c\n\x05\x05\0\x02\r\x02\x12\x03\x13\x18\x1a\n\x0b\n\x04\x05\0\
+ \x02\x0e\x12\x03\x14\x04\x18\n\x0c\n\x05\x05\0\x02\x0e\x01\x12\x03\x14\
+ \x04\x12\n\x0c\n\x05\x05\0\x02\x0e\x02\x12\x03\x14\x15\x17\n\x0b\n\x04\
+ \x05\0\x02\x0f\x12\x03\x15\x04\x19\n\x0c\n\x05\x05\0\x02\x0f\x01\x12\x03\
+ \x15\x04\x13\n\x0c\n\x05\x05\0\x02\x0f\x02\x12\x03\x15\x16\x18\n\x0b\n\
+ \x04\x05\0\x02\x10\x12\x03\x16\x04\x19\n\x0c\n\x05\x05\0\x02\x10\x01\x12\
+ \x03\x16\x04\x13\n\x0c\n\x05\x05\0\x02\x10\x02\x12\x03\x16\x16\x18\n\n\n\
+ \x02\x05\x01\x12\x04\x19\0#\x01\n\n\n\x03\x05\x01\x01\x12\x03\x19\x05\
+ \x0c\n\x0b\n\x04\x05\x01\x02\0\x12\x03\x1a\x04\r\n\x0c\n\x05\x05\x01\x02\
+ \0\x01\x12\x03\x1a\x04\x08\n\x0c\n\x05\x05\x01\x02\0\x02\x12\x03\x1a\x0b\
+ \x0c\n\x0b\n\x04\x05\x01\x02\x01\x12\x03\x1b\x04\x0e\n\x0c\n\x05\x05\x01\
+ \x02\x01\x01\x12\x03\x1b\x04\t\n\x0c\n\x05\x05\x01\x02\x01\x02\x12\x03\
+ \x1b\x0c\r\n\x0b\n\x04\x05\x01\x02\x02\x12\x03\x1c\x04\x0c\n\x0c\n\x05\
+ \x05\x01\x02\x02\x01\x12\x03\x1c\x04\x07\n\x0c\n\x05\x05\x01\x02\x02\x02\
+ \x12\x03\x1c\n\x0b\n\x0b\n\x04\x05\x01\x02\x03\x12\x03\x1d\x04\x0f\n\x0c\
+ \n\x05\x05\x01\x02\x03\x01\x12\x03\x1d\x04\n\n\x0c\n\x05\x05\x01\x02\x03\
+ \x02\x12\x03\x1d\r\x0e\n\x0b\n\x04\x05\x01\x02\x04\x12\x03\x1e\x04\x10\n\
+ \x0c\n\x05\x05\x01\x02\x04\x01\x12\x03\x1e\x04\x0b\n\x0c\n\x05\x05\x01\
+ \x02\x04\x02\x12\x03\x1e\x0e\x0f\n\x0b\n\x04\x05\x01\x02\x05\x12\x03\x1f\
+ \x04\x13\n\x0c\n\x05\x05\x01\x02\x05\x01\x12\x03\x1f\x04\x0e\n\x0c\n\x05\
+ \x05\x01\x02\x05\x02\x12\x03\x1f\x11\x12\n\x0b\n\x04\x05\x01\x02\x06\x12\
+ \x03\x20\x04\x0f\n\x0c\n\x05\x05\x01\x02\x06\x01\x12\x03\x20\x04\n\n\x0c\
+ \n\x05\x05\x01\x02\x06\x02\x12\x03\x20\r\x0e\n\x0b\n\x04\x05\x01\x02\x07\
+ \x12\x03!\x04\x11\n\x0c\n\x05\x05\x01\x02\x07\x01\x12\x03!\x04\x0c\n\x0c\
+ \n\x05\x05\x01\x02\x07\x02\x12\x03!\x0f\x10\n\x0b\n\x04\x05\x01\x02\x08\
+ \x12\x03\"\x04\x0e\n\x0c\n\x05\x05\x01\x02\x08\x01\x12\x03\"\x04\t\n\x0c\
+ \n\x05\x05\x01\x02\x08\x02\x12\x03\"\x0c\r\n\n\n\x02\x04\0\x12\x04%\01\
+ \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\x030\
+ \x04\x1c\n\r\n\x05\x04\0\x02\n\x04\x12\x040\x04/\"\n\x0c\n\x05\x04\0\x02\
+ \n\x06\x12\x030\x04\x0c\n\x0c\n\x05\x04\0\x02\n\x01\x12\x030\r\x16\n\x0c\
+ \n\x05\x04\0\x02\n\x03\x12\x030\x19\x1b\n\n\n\x02\x04\x01\x12\x043\07\
+ \x01\n\n\n\x03\x04\x01\x01\x12\x033\x08\x15\n\x0b\n\x04\x04\x01\x02\0\
+ \x12\x034\x04\x1e\n\r\n\x05\x04\x01\x02\0\x04\x12\x044\x043\x17\n\x0c\n\
+ \x05\x04\x01\x02\0\x06\x12\x034\x04\x16\n\x0c\n\x05\x04\x01\x02\0\x01\
+ \x12\x034\x17\x19\n\x0c\n\x05\x04\x01\x02\0\x03\x12\x034\x1c\x1d\n\x0b\n\
+ \x04\x04\x01\x02\x01\x12\x035\x04\x12\n\r\n\x05\x04\x01\x02\x01\x04\x12\
+ \x045\x044\x1e\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x035\x04\n\n\x0c\n\
+ \x05\x04\x01\x02\x01\x01\x12\x035\x0b\r\n\x0c\n\x05\x04\x01\x02\x01\x03\
+ \x12\x035\x10\x11\n\x0b\n\x04\x04\x01\x02\x02\x12\x036\x04\x14\n\r\n\x05\
+ \x04\x01\x02\x02\x04\x12\x046\x045\x12\n\x0c\n\x05\x04\x01\x02\x02\x05\
+ \x12\x036\x04\n\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x036\x0b\x0f\n\x0c\n\
+ \x05\x04\x01\x02\x02\x03\x12\x036\x12\x13\n\n\n\x02\x04\x02\x12\x049\0;\
+ \x01\n\n\n\x03\x04\x02\x01\x12\x039\x08\x10\n\x0b\n\x04\x04\x02\x02\0\
+ \x12\x03:\x04\x14\n\r\n\x05\x04\x02\x02\0\x04\x12\x04:\x049\x12\n\x0c\n\
+ \x05\x04\x02\x02\0\x06\x12\x03:\x04\x0b\n\x0c\n\x05\x04\x02\x02\0\x01\
+ \x12\x03:\x0c\x0f\n\x0c\n\x05\x04\x02\x02\0\x03\x12\x03:\x12\x13\n\n\n\
+ \x02\x04\x03\x12\x04=\0A\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\x04C\0G\x01\n\n\n\x03\x04\x04\x01\x12\x03C\x08\x10\
+ \n\x0b\n\x04\x04\x04\x02\0\x12\x03D\x04\x19\n\r\n\x05\x04\x04\x02\0\x04\
+ \x12\x04D\x04C\x12\n\x0c\n\x05\x04\x04\x02\0\x05\x12\x03D\x04\n\n\x0c\n\
+ \x05\x04\x04\x02\0\x01\x12\x03D\x0b\x14\n\x0c\n\x05\x04\x04\x02\0\x03\
+ \x12\x03D\x17\x18\n\x0b\n\x04\x04\x04\x02\x01\x12\x03E\x04\x17\n\r\n\x05\
+ \x04\x04\x02\x01\x04\x12\x04E\x04D\x19\n\x0c\n\x05\x04\x04\x02\x01\x05\
+ \x12\x03E\x04\n\n\x0c\n\x05\x04\x04\x02\x01\x01\x12\x03E\x0b\x12\n\x0c\n\
+ \x05\x04\x04\x02\x01\x03\x12\x03E\x15\x16\n\x0b\n\x04\x04\x04\x02\x02\
+ \x12\x03F\x04\x19\n\r\n\x05\x04\x04\x02\x02\x04\x12\x04F\x04E\x17\n\x0c\
+ \n\x05\x04\x04\x02\x02\x05\x12\x03F\x04\n\n\x0c\n\x05\x04\x04\x02\x02\
+ \x01\x12\x03F\x0b\x14\n\x0c\n\x05\x04\x04\x02\x02\x03\x12\x03F\x17\x18\n\
+ \n\n\x02\x04\x05\x12\x04I\0L\x01\n\n\n\x03\x04\x05\x01\x12\x03I\x08\x10\
+ \n\x0b\n\x04\x04\x05\x02\0\x12\x03J\x04\x19\n\r\n\x05\x04\x05\x02\0\x04\
+ \x12\x04J\x04I\x12\n\x0c\n\x05\x04\x05\x02\0\x05\x12\x03J\x04\n\n\x0c\n\
+ \x05\x04\x05\x02\0\x01\x12\x03J\x0b\x14\n\x0c\n\x05\x04\x05\x02\0\x03\
+ \x12\x03J\x17\x18\n\x0b\n\x04\x04\x05\x02\x01\x12\x03K\x04\x13\n\r\n\x05\
+ \x04\x05\x02\x01\x04\x12\x04K\x04J\x19\n\x0c\n\x05\x04\x05\x02\x01\x05\
+ \x12\x03K\x04\n\n\x0c\n\x05\x04\x05\x02\x01\x01\x12\x03K\x0b\x0e\n\x0c\n\
+ \x05\x04\x05\x02\x01\x03\x12\x03K\x11\x12\n\n\n\x02\x04\x06\x12\x04N\0Q\
+ \x01\n\n\n\x03\x04\x06\x01\x12\x03N\x08\x11\n\x0b\n\x04\x04\x06\x02\0\
+ \x12\x03O\x04\x15\n\r\n\x05\x04\x06\x02\0\x04\x12\x04O\x04N\x13\n\x0c\n\
+ \x05\x04\x06\x02\0\x05\x12\x03O\x04\n\n\x0c\n\x05\x04\x06\x02\0\x01\x12\
+ \x03O\x0b\x10\n\x0c\n\x05\x04\x06\x02\0\x03\x12\x03O\x13\x14\n\x0b\n\x04\
+ \x04\x06\x02\x01\x12\x03P\x04\x14\n\r\n\x05\x04\x06\x02\x01\x04\x12\x04P\
+ \x04O\x15\n\x0c\n\x05\x04\x06\x02\x01\x06\x12\x03P\x04\x0b\n\x0c\n\x05\
+ \x04\x06\x02\x01\x01\x12\x03P\x0c\x0f\n\x0c\n\x05\x04\x06\x02\x01\x03\
+ \x12\x03P\x12\x13\n\n\n\x02\x04\x07\x12\x04S\0V\x01\n\n\n\x03\x04\x07\
+ \x01\x12\x03S\x08\x10\n\x0b\n\x04\x04\x07\x02\0\x12\x03T\x04\x19\n\r\n\
+ \x05\x04\x07\x02\0\x04\x12\x04T\x04S\x12\n\x0c\n\x05\x04\x07\x02\0\x05\
+ \x12\x03T\x04\n\n\x0c\n\x05\x04\x07\x02\0\x01\x12\x03T\x0b\x14\n\x0c\n\
+ \x05\x04\x07\x02\0\x03\x12\x03T\x17\x18\n\x0b\n\x04\x04\x07\x02\x01\x12\
+ \x03U\x04\x13\n\r\n\x05\x04\x07\x02\x01\x04\x12\x04U\x04T\x19\n\x0c\n\
+ \x05\x04\x07\x02\x01\x05\x12\x03U\x04\n\n\x0c\n\x05\x04\x07\x02\x01\x01\
+ \x12\x03U\x0b\x0e\n\x0c\n\x05\x04\x07\x02\x01\x03\x12\x03U\x11\x12\n\n\n\
+ \x02\x04\x08\x12\x04X\0[\x01\n\n\n\x03\x04\x08\x01\x12\x03X\x08\x11\n\
+ \x0b\n\x04\x04\x08\x02\0\x12\x03Y\x04\x15\n\r\n\x05\x04\x08\x02\0\x04\
+ \x12\x04Y\x04X\x13\n\x0c\n\x05\x04\x08\x02\0\x05\x12\x03Y\x04\n\n\x0c\n\
+ \x05\x04\x08\x02\0\x01\x12\x03Y\x0b\x10\n\x0c\n\x05\x04\x08\x02\0\x03\
+ \x12\x03Y\x13\x14\n\x0b\n\x04\x04\x08\x02\x01\x12\x03Z\x04\x14\n\r\n\x05\
+ \x04\x08\x02\x01\x04\x12\x04Z\x04Y\x15\n\x0c\n\x05\x04\x08\x02\x01\x06\
+ \x12\x03Z\x04\x0b\n\x0c\n\x05\x04\x08\x02\x01\x01\x12\x03Z\x0c\x0f\n\x0c\
+ \n\x05\x04\x08\x02\x01\x03\x12\x03Z\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\x04b\0e\x01\n\n\n\x03\x04\n\x01\x12\x03b\x08\x13\n\x0b\
+ \n\x04\x04\n\x02\0\x12\x03c\x04\x15\n\r\n\x05\x04\n\x02\0\x04\x12\x04c\
+ \x04b\x15\n\x0c\n\x05\x04\n\x02\0\x05\x12\x03c\x04\n\n\x0c\n\x05\x04\n\
+ \x02\0\x01\x12\x03c\x0b\x10\n\x0c\n\x05\x04\n\x02\0\x03\x12\x03c\x13\x14\
+ \n\x0b\n\x04\x04\n\x02\x01\x12\x03d\x04\x14\n\r\n\x05\x04\n\x02\x01\x04\
+ \x12\x04d\x04c\x15\n\x0c\n\x05\x04\n\x02\x01\x06\x12\x03d\x04\x0b\n\x0c\
+ \n\x05\x04\n\x02\x01\x01\x12\x03d\x0c\x0f\n\x0c\n\x05\x04\n\x02\x01\x03\
+ \x12\x03d\x12\x13\n\n\n\x02\x04\x0b\x12\x04g\0k\x01\n\n\n\x03\x04\x0b\
+ \x01\x12\x03g\x08\x0e\n\x0b\n\x04\x04\x0b\x02\0\x12\x03h\x04\x19\n\r\n\
+ \x05\x04\x0b\x02\0\x04\x12\x04h\x04g\x10\n\x0c\n\x05\x04\x0b\x02\0\x05\
+ \x12\x03h\x04\n\n\x0c\n\x05\x04\x0b\x02\0\x01\x12\x03h\x0b\x14\n\x0c\n\
+ \x05\x04\x0b\x02\0\x03\x12\x03h\x17\x18\n\x0b\n\x04\x04\x0b\x02\x01\x12\
+ \x03i\x04\x13\n\r\n\x05\x04\x0b\x02\x01\x04\x12\x04i\x04h\x19\n\x0c\n\
+ \x05\x04\x0b\x02\x01\x05\x12\x03i\x04\n\n\x0c\n\x05\x04\x0b\x02\x01\x01\
+ \x12\x03i\x0b\x0e\n\x0c\n\x05\x04\x0b\x02\x01\x03\x12\x03i\x11\x12\n\x0b\
+ \n\x04\x04\x0b\x02\x02\x12\x03j\x04\x16\n\r\n\x05\x04\x0b\x02\x02\x04\
+ \x12\x04j\x04i\x13\n\x0c\n\x05\x04\x0b\x02\x02\x05\x12\x03j\x04\n\n\x0c\
+ \n\x05\x04\x0b\x02\x02\x01\x12\x03j\x0b\x11\n\x0c\n\x05\x04\x0b\x02\x02\
+ \x03\x12\x03j\x14\x15\n\n\n\x02\x04\x0c\x12\x04m\0p\x01\n\n\n\x03\x04\
+ \x0c\x01\x12\x03m\x08\x0f\n\x0b\n\x04\x04\x0c\x02\0\x12\x03n\x04\x15\n\r\
+ \n\x05\x04\x0c\x02\0\x04\x12\x04n\x04m\x11\n\x0c\n\x05\x04\x0c\x02\0\x05\
+ \x12\x03n\x04\n\n\x0c\n\x05\x04\x0c\x02\0\x01\x12\x03n\x0b\x10\n\x0c\n\
+ \x05\x04\x0c\x02\0\x03\x12\x03n\x13\x14\n\x0b\n\x04\x04\x0c\x02\x01\x12\
+ \x03o\x04\x14\n\r\n\x05\x04\x0c\x02\x01\x04\x12\x04o\x04n\x15\n\x0c\n\
+ \x05\x04\x0c\x02\x01\x06\x12\x03o\x04\x0b\n\x0c\n\x05\x04\x0c\x02\x01\
+ \x01\x12\x03o\x0c\x0f\n\x0c\n\x05\x04\x0c\x02\x01\x03\x12\x03o\x12\x13\n\
+ \n\n\x02\x04\r\x12\x04r\0v\x01\n\n\n\x03\x04\r\x01\x12\x03r\x08\x0e\n\
+ \x0b\n\x04\x04\r\x02\0\x12\x03s\x04\x19\n\r\n\x05\x04\r\x02\0\x04\x12\
+ \x04s\x04r\x10\n\x0c\n\x05\x04\r\x02\0\x05\x12\x03s\x04\n\n\x0c\n\x05\
+ \x04\r\x02\0\x01\x12\x03s\x0b\x14\n\x0c\n\x05\x04\r\x02\0\x03\x12\x03s\
+ \x17\x18\n\x0b\n\x04\x04\r\x02\x01\x12\x03t\x04\x13\n\r\n\x05\x04\r\x02\
+ \x01\x04\x12\x04t\x04s\x19\n\x0c\n\x05\x04\r\x02\x01\x05\x12\x03t\x04\n\
+ \n\x0c\n\x05\x04\r\x02\x01\x01\x12\x03t\x0b\x0e\n\x0c\n\x05\x04\r\x02\
+ \x01\x03\x12\x03t\x11\x12\n\x0b\n\x04\x04\r\x02\x02\x12\x03u\x04\x13\n\r\
+ \n\x05\x04\r\x02\x02\x04\x12\x04u\x04t\x13\n\x0c\n\x05\x04\r\x02\x02\x05\
+ \x12\x03u\x04\n\n\x0c\n\x05\x04\r\x02\x02\x01\x12\x03u\x0b\x0e\n\x0c\n\
+ \x05\x04\r\x02\x02\x03\x12\x03u\x11\x12\n\n\n\x02\x04\x0e\x12\x04x\0{\
+ \x01\n\n\n\x03\x04\x0e\x01\x12\x03x\x08\x0f\n\x0b\n\x04\x04\x0e\x02\0\
+ \x12\x03y\x04\x15\n\r\n\x05\x04\x0e\x02\0\x04\x12\x04y\x04x\x11\n\x0c\n\
+ \x05\x04\x0e\x02\0\x05\x12\x03y\x04\n\n\x0c\n\x05\x04\x0e\x02\0\x01\x12\
+ \x03y\x0b\x10\n\x0c\n\x05\x04\x0e\x02\0\x03\x12\x03y\x13\x14\n\x0b\n\x04\
+ \x04\x0e\x02\x01\x12\x03z\x04\x14\n\r\n\x05\x04\x0e\x02\x01\x04\x12\x04z\
+ \x04y\x15\n\x0c\n\x05\x04\x0e\x02\x01\x06\x12\x03z\x04\x0b\n\x0c\n\x05\
+ \x04\x0e\x02\x01\x01\x12\x03z\x0c\x0f\n\x0c\n\x05\x04\x0e\x02\x01\x03\
+ \x12\x03z\x12\x13\n\x0b\n\x02\x04\x0f\x12\x05}\0\x81\x01\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\x7f\x04\x13\n\r\n\x05\x04\x0f\x02\x01\x04\x12\x04\x7f\x04~\x19\
+ \n\x0c\n\x05\x04\x0f\x02\x01\x05\x12\x03\x7f\x04\n\n\x0c\n\x05\x04\x0f\
+ \x02\x01\x01\x12\x03\x7f\x0b\x0e\n\x0c\n\x05\x04\x0f\x02\x01\x03\x12\x03\
+ \x7f\x11\x12\n\x0c\n\x04\x04\x0f\x02\x02\x12\x04\x80\x01\x04\x16\n\x0e\n\
+ \x05\x04\x0f\x02\x02\x04\x12\x05\x80\x01\x04\x7f\x13\n\r\n\x05\x04\x0f\
+ \x02\x02\x05\x12\x04\x80\x01\x04\n\n\r\n\x05\x04\x0f\x02\x02\x01\x12\x04\
+ \x80\x01\x0b\x11\n\r\n\x05\x04\x0f\x02\x02\x03\x12\x04\x80\x01\x14\x15\n\
+ \x0c\n\x02\x04\x10\x12\x06\x83\x01\0\x86\x01\x01\n\x0b\n\x03\x04\x10\x01\
+ \x12\x04\x83\x01\x08\x12\n\x0c\n\x04\x04\x10\x02\0\x12\x04\x84\x01\x04\
+ \x15\n\x0f\n\x05\x04\x10\x02\0\x04\x12\x06\x84\x01\x04\x83\x01\x14\n\r\n\
+ \x05\x04\x10\x02\0\x05\x12\x04\x84\x01\x04\n\n\r\n\x05\x04\x10\x02\0\x01\
+ \x12\x04\x84\x01\x0b\x10\n\r\n\x05\x04\x10\x02\0\x03\x12\x04\x84\x01\x13\
+ \x14\n\x0c\n\x04\x04\x10\x02\x01\x12\x04\x85\x01\x04\x14\n\x0f\n\x05\x04\
+ \x10\x02\x01\x04\x12\x06\x85\x01\x04\x84\x01\x15\n\r\n\x05\x04\x10\x02\
+ \x01\x06\x12\x04\x85\x01\x04\x0b\n\r\n\x05\x04\x10\x02\x01\x01\x12\x04\
+ \x85\x01\x0c\x0f\n\r\n\x05\x04\x10\x02\x01\x03\x12\x04\x85\x01\x12\x13\n\
+ \x0c\n\x02\x04\x11\x12\x06\x88\x01\0\x8c\x01\x01\n\x0b\n\x03\x04\x11\x01\
+ \x12\x04\x88\x01\x08\x12\n\x0c\n\x04\x04\x11\x02\0\x12\x04\x89\x01\x04\
+ \x19\n\x0f\n\x05\x04\x11\x02\0\x04\x12\x06\x89\x01\x04\x88\x01\x14\n\r\n\
+ \x05\x04\x11\x02\0\x05\x12\x04\x89\x01\x04\n\n\r\n\x05\x04\x11\x02\0\x01\
+ \x12\x04\x89\x01\x0b\x14\n\r\n\x05\x04\x11\x02\0\x03\x12\x04\x89\x01\x17\
+ \x18\n\x0c\n\x04\x04\x11\x02\x01\x12\x04\x8a\x01\x04\x13\n\x0f\n\x05\x04\
+ \x11\x02\x01\x04\x12\x06\x8a\x01\x04\x89\x01\x19\n\r\n\x05\x04\x11\x02\
+ \x01\x05\x12\x04\x8a\x01\x04\n\n\r\n\x05\x04\x11\x02\x01\x01\x12\x04\x8a\
+ \x01\x0b\x0e\n\r\n\x05\x04\x11\x02\x01\x03\x12\x04\x8a\x01\x11\x12\n\x0c\
+ \n\x04\x04\x11\x02\x02\x12\x04\x8b\x01\x04\x14\n\x0f\n\x05\x04\x11\x02\
+ \x02\x04\x12\x06\x8b\x01\x04\x8a\x01\x13\n\r\n\x05\x04\x11\x02\x02\x05\
+ \x12\x04\x8b\x01\x04\n\n\r\n\x05\x04\x11\x02\x02\x01\x12\x04\x8b\x01\x0b\
+ \x0f\n\r\n\x05\x04\x11\x02\x02\x03\x12\x04\x8b\x01\x12\x13\n\x0c\n\x02\
+ \x04\x12\x12\x06\x8e\x01\0\x91\x01\x01\n\x0b\n\x03\x04\x12\x01\x12\x04\
+ \x8e\x01\x08\x13\n\x0c\n\x04\x04\x12\x02\0\x12\x04\x8f\x01\x04\x15\n\x0f\
+ \n\x05\x04\x12\x02\0\x04\x12\x06\x8f\x01\x04\x8e\x01\x15\n\r\n\x05\x04\
+ \x12\x02\0\x05\x12\x04\x8f\x01\x04\n\n\r\n\x05\x04\x12\x02\0\x01\x12\x04\
+ \x8f\x01\x0b\x10\n\r\n\x05\x04\x12\x02\0\x03\x12\x04\x8f\x01\x13\x14\n\
+ \x0c\n\x04\x04\x12\x02\x01\x12\x04\x90\x01\x04\x14\n\x0f\n\x05\x04\x12\
+ \x02\x01\x04\x12\x06\x90\x01\x04\x8f\x01\x15\n\r\n\x05\x04\x12\x02\x01\
+ \x06\x12\x04\x90\x01\x04\x0b\n\r\n\x05\x04\x12\x02\x01\x01\x12\x04\x90\
+ \x01\x0c\x0f\n\r\n\x05\x04\x12\x02\x01\x03\x12\x04\x90\x01\x12\x13\n\x0c\
+ \n\x02\x04\x13\x12\x06\x93\x01\0\x97\x01\x01\n\x0b\n\x03\x04\x13\x01\x12\
+ \x04\x93\x01\x08\x15\n\x0c\n\x04\x04\x13\x02\0\x12\x04\x94\x01\x04\x19\n\
+ \x0f\n\x05\x04\x13\x02\0\x04\x12\x06\x94\x01\x04\x93\x01\x17\n\r\n\x05\
+ \x04\x13\x02\0\x05\x12\x04\x94\x01\x04\n\n\r\n\x05\x04\x13\x02\0\x01\x12\
+ \x04\x94\x01\x0b\x14\n\r\n\x05\x04\x13\x02\0\x03\x12\x04\x94\x01\x17\x18\
+ \n\x0c\n\x04\x04\x13\x02\x01\x12\x04\x95\x01\x04\x13\n\x0f\n\x05\x04\x13\
+ \x02\x01\x04\x12\x06\x95\x01\x04\x94\x01\x19\n\r\n\x05\x04\x13\x02\x01\
+ \x05\x12\x04\x95\x01\x04\n\n\r\n\x05\x04\x13\x02\x01\x01\x12\x04\x95\x01\
+ \x0b\x0e\n\r\n\x05\x04\x13\x02\x01\x03\x12\x04\x95\x01\x11\x12\n\x0c\n\
+ \x04\x04\x13\x02\x02\x12\x04\x96\x01\x04\x14\n\x0f\n\x05\x04\x13\x02\x02\
+ \x04\x12\x06\x96\x01\x04\x95\x01\x13\n\r\n\x05\x04\x13\x02\x02\x05\x12\
+ \x04\x96\x01\x04\n\n\r\n\x05\x04\x13\x02\x02\x01\x12\x04\x96\x01\x0b\x0f\
+ \n\r\n\x05\x04\x13\x02\x02\x03\x12\x04\x96\x01\x12\x13\n\x0c\n\x02\x04\
+ \x14\x12\x06\x99\x01\0\x9c\x01\x01\n\x0b\n\x03\x04\x14\x01\x12\x04\x99\
+ \x01\x08\x16\n\x0c\n\x04\x04\x14\x02\0\x12\x04\x9a\x01\x04\x15\n\x0f\n\
+ \x05\x04\x14\x02\0\x04\x12\x06\x9a\x01\x04\x99\x01\x18\n\r\n\x05\x04\x14\
+ \x02\0\x05\x12\x04\x9a\x01\x04\n\n\r\n\x05\x04\x14\x02\0\x01\x12\x04\x9a\
+ \x01\x0b\x10\n\r\n\x05\x04\x14\x02\0\x03\x12\x04\x9a\x01\x13\x14\n\x0c\n\
+ \x04\x04\x14\x02\x01\x12\x04\x9b\x01\x04\x14\n\x0f\n\x05\x04\x14\x02\x01\
+ \x04\x12\x06\x9b\x01\x04\x9a\x01\x15\n\r\n\x05\x04\x14\x02\x01\x06\x12\
+ \x04\x9b\x01\x04\x0b\n\r\n\x05\x04\x14\x02\x01\x01\x12\x04\x9b\x01\x0c\
+ \x0f\n\r\n\x05\x04\x14\x02\x01\x03\x12\x04\x9b\x01\x12\x13\n\x0c\n\x02\
+ \x04\x15\x12\x06\x9e\x01\0\xa1\x01\x01\n\x0b\n\x03\x04\x15\x01\x12\x04\
+ \x9e\x01\x08\x11\n\x0c\n\x04\x04\x15\x02\0\x12\x04\x9f\x01\x04\x19\n\x0f\
+ \n\x05\x04\x15\x02\0\x04\x12\x06\x9f\x01\x04\x9e\x01\x13\n\r\n\x05\x04\
+ \x15\x02\0\x05\x12\x04\x9f\x01\x04\n\n\r\n\x05\x04\x15\x02\0\x01\x12\x04\
+ \x9f\x01\x0b\x14\n\r\n\x05\x04\x15\x02\0\x03\x12\x04\x9f\x01\x17\x18\n\
+ \x0c\n\x04\x04\x15\x02\x01\x12\x04\xa0\x01\x04\x13\n\x0f\n\x05\x04\x15\
+ \x02\x01\x04\x12\x06\xa0\x01\x04\x9f\x01\x19\n\r\n\x05\x04\x15\x02\x01\
+ \x05\x12\x04\xa0\x01\x04\n\n\r\n\x05\x04\x15\x02\x01\x01\x12\x04\xa0\x01\
+ \x0b\x0e\n\r\n\x05\x04\x15\x02\x01\x03\x12\x04\xa0\x01\x11\x12\n\x0c\n\
+ \x02\x04\x16\x12\x06\xa3\x01\0\xa6\x01\x01\n\x0b\n\x03\x04\x16\x01\x12\
+ \x04\xa3\x01\x08\x12\n\x0c\n\x04\x04\x16\x02\0\x12\x04\xa4\x01\x04\x15\n\
+ \x0f\n\x05\x04\x16\x02\0\x04\x12\x06\xa4\x01\x04\xa3\x01\x14\n\r\n\x05\
+ \x04\x16\x02\0\x05\x12\x04\xa4\x01\x04\n\n\r\n\x05\x04\x16\x02\0\x01\x12\
+ \x04\xa4\x01\x0b\x10\n\r\n\x05\x04\x16\x02\0\x03\x12\x04\xa4\x01\x13\x14\
+ \n\x0c\n\x04\x04\x16\x02\x01\x12\x04\xa5\x01\x04\x14\n\x0f\n\x05\x04\x16\
+ \x02\x01\x04\x12\x06\xa5\x01\x04\xa4\x01\x15\n\r\n\x05\x04\x16\x02\x01\
+ \x06\x12\x04\xa5\x01\x04\x0b\n\r\n\x05\x04\x16\x02\x01\x01\x12\x04\xa5\
+ \x01\x0c\x0f\n\r\n\x05\x04\x16\x02\x01\x03\x12\x04\xa5\x01\x12\x13\n\x0c\
+ \n\x02\x04\x17\x12\x06\xa8\x01\0\xab\x01\x01\n\x0b\n\x03\x04\x17\x01\x12\
+ \x04\xa8\x01\x08\x13\n\x0c\n\x04\x04\x17\x02\0\x12\x04\xa9\x01\x04\x19\n\
+ \x0f\n\x05\x04\x17\x02\0\x04\x12\x06\xa9\x01\x04\xa8\x01\x15\n\r\n\x05\
+ \x04\x17\x02\0\x05\x12\x04\xa9\x01\x04\n\n\r\n\x05\x04\x17\x02\0\x01\x12\
+ \x04\xa9\x01\x0b\x14\n\r\n\x05\x04\x17\x02\0\x03\x12\x04\xa9\x01\x17\x18\
+ \n\x0c\n\x04\x04\x17\x02\x01\x12\x04\xaa\x01\x04\x13\n\x0f\n\x05\x04\x17\
+ \x02\x01\x04\x12\x06\xaa\x01\x04\xa9\x01\x19\n\r\n\x05\x04\x17\x02\x01\
+ \x05\x12\x04\xaa\x01\x04\n\n\r\n\x05\x04\x17\x02\x01\x01\x12\x04\xaa\x01\
+ \x0b\x0e\n\r\n\x05\x04\x17\x02\x01\x03\x12\x04\xaa\x01\x11\x12\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\x14\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\x16\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\x10\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\x12\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\x11\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\x13\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\x13\n\x0c\
+ \n\x02\x04\x1b\x12\x06\xbc\x01\0\xc6\x01\x01\n\x0b\n\x03\x04\x1b\x01\x12\
+ \x04\xbc\x01\x08\x11\n\x0c\n\x04\x04\x1b\x02\0\x12\x04\xbd\x01\x04\x19\n\
+ \x0f\n\x05\x04\x1b\x02\0\x04\x12\x06\xbd\x01\x04\xbc\x01\x13\n\r\n\x05\
+ \x04\x1b\x02\0\x05\x12\x04\xbd\x01\x04\n\n\r\n\x05\x04\x1b\x02\0\x01\x12\
+ \x04\xbd\x01\x0b\x14\n\r\n\x05\x04\x1b\x02\0\x03\x12\x04\xbd\x01\x17\x18\
+ \n\x0c\n\x04\x04\x1b\x02\x01\x12\x04\xbe\x01\x04\x13\n\x0f\n\x05\x04\x1b\
+ \x02\x01\x04\x12\x06\xbe\x01\x04\xbd\x01\x19\n\r\n\x05\x04\x1b\x02\x01\
+ \x05\x12\x04\xbe\x01\x04\n\n\r\n\x05\x04\x1b\x02\x01\x01\x12\x04\xbe\x01\
+ \x0b\x0e\n\r\n\x05\x04\x1b\x02\x01\x03\x12\x04\xbe\x01\x11\x12\n\x0c\n\
+ \x04\x04\x1b\x02\x02\x12\x04\xbf\x01\x04\x15\n\x0f\n\x05\x04\x1b\x02\x02\
+ \x04\x12\x06\xbf\x01\x04\xbe\x01\x13\n\r\n\x05\x04\x1b\x02\x02\x05\x12\
+ \x04\xbf\x01\x04\n\n\r\n\x05\x04\x1b\x02\x02\x01\x12\x04\xbf\x01\x0b\x10\
+ \n\r\n\x05\x04\x1b\x02\x02\x03\x12\x04\xbf\x01\x13\x14\n\x0c\n\x04\x04\
+ \x1b\x02\x03\x12\x04\xc0\x01\x04\x14\n\x0f\n\x05\x04\x1b\x02\x03\x04\x12\
+ \x06\xc0\x01\x04\xbf\x01\x15\n\r\n\x05\x04\x1b\x02\x03\x05\x12\x04\xc0\
+ \x01\x04\n\n\r\n\x05\x04\x1b\x02\x03\x01\x12\x04\xc0\x01\x0b\x0f\n\r\n\
+ \x05\x04\x1b\x02\x03\x03\x12\x04\xc0\x01\x12\x13\n\x0c\n\x04\x04\x1b\x02\
+ \x04\x12\x04\xc1\x01\x04\x15\n\x0f\n\x05\x04\x1b\x02\x04\x04\x12\x06\xc1\
+ \x01\x04\xc0\x01\x14\n\r\n\x05\x04\x1b\x02\x04\x05\x12\x04\xc1\x01\x04\n\
+ \n\r\n\x05\x04\x1b\x02\x04\x01\x12\x04\xc1\x01\x0b\x10\n\r\n\x05\x04\x1b\
+ \x02\x04\x03\x12\x04\xc1\x01\x13\x14\n\x0c\n\x04\x04\x1b\x02\x05\x12\x04\
+ \xc2\x01\x04\x1b\n\x0f\n\x05\x04\x1b\x02\x05\x04\x12\x06\xc2\x01\x04\xc1\
+ \x01\x15\n\r\n\x05\x04\x1b\x02\x05\x05\x12\x04\xc2\x01\x04\x08\n\r\n\x05\
+ \x04\x1b\x02\x05\x01\x12\x04\xc2\x01\t\x16\n\r\n\x05\x04\x1b\x02\x05\x03\
+ \x12\x04\xc2\x01\x19\x1a\n\x0c\n\x04\x04\x1b\x02\x06\x12\x04\xc3\x01\x04\
+ \x1a\n\x0f\n\x05\x04\x1b\x02\x06\x04\x12\x06\xc3\x01\x04\xc2\x01\x1b\n\r\
+ \n\x05\x04\x1b\x02\x06\x05\x12\x04\xc3\x01\x04\x08\n\r\n\x05\x04\x1b\x02\
+ \x06\x01\x12\x04\xc3\x01\t\x15\n\r\n\x05\x04\x1b\x02\x06\x03\x12\x04\xc3\
+ \x01\x18\x19\n\x0c\n\x04\x04\x1b\x02\x07\x12\x04\xc4\x01\x04\x1b\n\x0f\n\
+ \x05\x04\x1b\x02\x07\x04\x12\x06\xc4\x01\x04\xc3\x01\x1a\n\r\n\x05\x04\
+ \x1b\x02\x07\x05\x12\x04\xc4\x01\x04\n\n\r\n\x05\x04\x1b\x02\x07\x01\x12\
+ \x04\xc4\x01\x0b\x16\n\r\n\x05\x04\x1b\x02\x07\x03\x12\x04\xc4\x01\x19\
+ \x1a\n\x0c\n\x04\x04\x1b\x02\x08\x12\x04\xc5\x01\x04'\n\r\n\x05\x04\x1b\
+ \x02\x08\x04\x12\x04\xc5\x01\x04\x0c\n\r\n\x05\x04\x1b\x02\x08\x05\x12\
+ \x04\xc5\x01\r\x13\n\r\n\x05\x04\x1b\x02\x08\x01\x12\x04\xc5\x01\x14\"\n\
+ \r\n\x05\x04\x1b\x02\x08\x03\x12\x04\xc5\x01%&\n\x0c\n\x02\x04\x1c\x12\
+ \x06\xc8\x01\0\xcb\x01\x01\n\x0b\n\x03\x04\x1c\x01\x12\x04\xc8\x01\x08\
+ \x12\n\x0c\n\x04\x04\x1c\x02\0\x12\x04\xc9\x01\x04\x15\n\x0f\n\x05\x04\
+ \x1c\x02\0\x04\x12\x06\xc9\x01\x04\xc8\x01\x14\n\r\n\x05\x04\x1c\x02\0\
+ \x05\x12\x04\xc9\x01\x04\n\n\r\n\x05\x04\x1c\x02\0\x01\x12\x04\xc9\x01\
+ \x0b\x10\n\r\n\x05\x04\x1c\x02\0\x03\x12\x04\xc9\x01\x13\x14\n\x0c\n\x04\
+ \x04\x1c\x02\x01\x12\x04\xca\x01\x04\x14\n\x0f\n\x05\x04\x1c\x02\x01\x04\
+ \x12\x06\xca\x01\x04\xc9\x01\x15\n\r\n\x05\x04\x1c\x02\x01\x06\x12\x04\
+ \xca\x01\x04\x0b\n\r\n\x05\x04\x1c\x02\x01\x01\x12\x04\xca\x01\x0c\x0f\n\
+ \r\n\x05\x04\x1c\x02\x01\x03\x12\x04\xca\x01\x12\x13\n\x0c\n\x02\x04\x1d\
+ \x12\x06\xcd\x01\0\xd0\x01\x01\n\x0b\n\x03\x04\x1d\x01\x12\x04\xcd\x01\
+ \x08\x11\n\x0c\n\x04\x04\x1d\x02\0\x12\x04\xce\x01\x04\x19\n\x0f\n\x05\
+ \x04\x1d\x02\0\x04\x12\x06\xce\x01\x04\xcd\x01\x13\n\r\n\x05\x04\x1d\x02\
+ \0\x05\x12\x04\xce\x01\x04\n\n\r\n\x05\x04\x1d\x02\0\x01\x12\x04\xce\x01\
+ \x0b\x14\n\r\n\x05\x04\x1d\x02\0\x03\x12\x04\xce\x01\x17\x18\n\x0c\n\x04\
+ \x04\x1d\x02\x01\x12\x04\xcf\x01\x04\x13\n\x0f\n\x05\x04\x1d\x02\x01\x04\
+ \x12\x06\xcf\x01\x04\xce\x01\x19\n\r\n\x05\x04\x1d\x02\x01\x05\x12\x04\
+ \xcf\x01\x04\n\n\r\n\x05\x04\x1d\x02\x01\x01\x12\x04\xcf\x01\x0b\x0e\n\r\
+ \n\x05\x04\x1d\x02\x01\x03\x12\x04\xcf\x01\x11\x12\n\x0c\n\x02\x04\x1e\
+ \x12\x06\xd2\x01\0\xd5\x01\x01\n\x0b\n\x03\x04\x1e\x01\x12\x04\xd2\x01\
+ \x08\x12\n\x0c\n\x04\x04\x1e\x02\0\x12\x04\xd3\x01\x04\x15\n\x0f\n\x05\
+ \x04\x1e\x02\0\x04\x12\x06\xd3\x01\x04\xd2\x01\x14\n\r\n\x05\x04\x1e\x02\
+ \0\x05\x12\x04\xd3\x01\x04\n\n\r\n\x05\x04\x1e\x02\0\x01\x12\x04\xd3\x01\
+ \x0b\x10\n\r\n\x05\x04\x1e\x02\0\x03\x12\x04\xd3\x01\x13\x14\n\x0c\n\x04\
+ \x04\x1e\x02\x01\x12\x04\xd4\x01\x04\x14\n\x0f\n\x05\x04\x1e\x02\x01\x04\
+ \x12\x06\xd4\x01\x04\xd3\x01\x15\n\r\n\x05\x04\x1e\x02\x01\x06\x12\x04\
+ \xd4\x01\x04\x0b\n\r\n\x05\x04\x1e\x02\x01\x01\x12\x04\xd4\x01\x0c\x0f\n\
+ \r\n\x05\x04\x1e\x02\x01\x03\x12\x04\xd4\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 df48984..abec9b5 100644
--- a/src/server/server.rs
+++ b/src/server/server.rs
@@ -15,6 +15,7 @@ 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::merge_policy::LogMergePolicy;
use tantivy::query::{QueryParser, TermQuery};
use tantivy::schema::{Field, FieldType, IndexRecordOption, Schema};
use tantivy::{Document, Index, IndexWriter, Term};
@@ -43,7 +44,6 @@ pub struct IndexServer {
rf_message_ch: SyncSender,
notify_ch_map: Arc>>>,
index: Arc,
- // unique_key_field_name: String,
index_writer: Arc>,
metrics: Arc>,
}
@@ -56,6 +56,8 @@ impl IndexServer {
peers_addr: HashMap,
data_directory: &str,
schema_file: &str,
+ indexer_threads: usize,
+ indexer_memory_size: usize,
) {
let mut peers = HashMap::new();
peers.insert(id, create_client(&format!("{}:{}", host, port)));
@@ -78,15 +80,15 @@ impl IndexServer {
Index::create_in_dir(index_path.to_str().unwrap(), schema).unwrap()
};
- let num_threads = 1;
- let buffer_size_per_thread = 50_000_000;
- let index_writer = if num_threads > 0 {
+ let index_writer = if indexer_threads > 0 {
index
- .writer_with_num_threads(num_threads, buffer_size_per_thread)
+ .writer_with_num_threads(indexer_threads, indexer_memory_size)
.unwrap()
} else {
- index.writer(buffer_size_per_thread).unwrap()
+ index.writer(indexer_memory_size).unwrap()
};
+ index_writer.set_merge_policy(Box::new(LogMergePolicy::default()));
+ // index_writer.set_merge_policy(Box::new(NoMergePolicy));
let (rf_sender, rf_receiver) = mpsc::sync_channel(100);
let (rpc_sender, rpc_receiver) = mpsc::sync_channel(100);
@@ -101,7 +103,6 @@ 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(),
index_writer: Arc::new(Mutex::new(index_writer)),
metrics: Arc::new(Mutex::new(Metrics::new(id))),
};
@@ -186,18 +187,28 @@ impl IndexServer {
.unwrap_or_else(|e| {
error!("send propose to raft error: {:?}", e);
});
- match rh.recv_timeout(Duration::from_millis(1000)) {
- Ok(args) => {
- return (args.2, args.1);
- }
- Err(_) => {
+ // TODO: consider appropriate timeout value
+ return match rh.recv_timeout(Duration::from_millis(60000)) {
+ Ok(args) => (args.2, args.1),
+ Err(e) => {
{
let mut map = self.notify_ch_map.lock().unwrap();
map.remove(&req.get_client_id());
}
- return (RespErr::ErrWrongLeader, String::from(""));
+
+ let mut ret = HashMap::new();
+ ret.insert("error", format!("{:?}", e));
+ match e {
+ mpsc::RecvTimeoutError::Timeout => {
+ (RespErr::ErrTimeout, serde_json::to_string(&ret).unwrap())
+ }
+ mpsc::RecvTimeoutError::Disconnected => (
+ RespErr::ErrDisconnected,
+ serde_json::to_string(&ret).unwrap(),
+ ),
+ }
}
- }
+ };
}
// TODO: check duplicate request.
@@ -487,8 +498,6 @@ impl IndexServer {
impl IndexService for IndexServer {
fn raft(&mut self, ctx: RpcContext, req: RaftMessage, sink: UnarySink) {
- // debug!("request: {:?}", req);
-
self.metrics.lock().unwrap().inc_request_count("raft");
self.rf_message_ch
@@ -498,8 +507,6 @@ impl IndexService for IndexServer {
});
let resp = RaftDone::new();
- // debug!("response: {:?}", resp);
-
ctx.spawn(
sink.success(resp)
.map_err(move |e| error!("failed to reply {:?}: {:?}", req, e)),